Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for configPath (0.21 sec)

  1. pkg/envoy/proxy.go

    		}
    		return err
    	case err := <-done:
    		return err
    	}
    }
    
    func (e *envoy) Cleanup() {
    	if e.ConfigCleanup {
    		if err := os.Remove(e.ConfigPath); err != nil {
    			log.Warnf("Failed to delete config file %s: %v", e.ConfigPath, err)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/options/agent.go

    	}
    	o := &istioagent.AgentOptions{
    		XDSRootCerts:             xdsRootCA,
    		CARootCerts:              caRootCA,
    		XDSHeaders:               map[string]string{},
    		XdsUdsPath:               filepath.Join(cfg.ConfigPath, "XDS"),
    		IsIPv6:                   proxy.IsIPv6(),
    		ProxyType:                proxy.Type,
    		EnableDynamicProxyConfig: enableProxyConfigXdsEnv,
    		WASMOptions: wasm.Options{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. istioctl/cmd/root.go

    	defaultIstioctlConfig = "$HOME/.istioctl/config.yaml"
    )
    
    const (
    	FlagCharts = "charts"
    )
    
    // ConfigAndEnvProcessing uses spf13/viper for overriding CLI parameters
    func ConfigAndEnvProcessing() error {
    	configPath := filepath.Dir(root.IstioConfig)
    	baseName := filepath.Base(root.IstioConfig)
    	configType := filepath.Ext(root.IstioConfig)
    	configName := baseName[0 : len(baseName)-len(configType)]
    	if configType != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent.go

    	// monitoring the certs and restart if the content of the certs changes.
    	if len(a.proxyConfig.CustomConfigFile) > 0 {
    		// there is a custom configuration. Don't write our own config - but keep watching the certs.
    		a.envoyOpts.ConfigPath = a.proxyConfig.CustomConfigFile
    		a.envoyOpts.ConfigCleanup = false
    	} else {
    		out, err := bootstrap.New(bootstrap.Config{
    			Node:             node,
    			CompliancePolicy: common_features.CompliancePolicy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. cmd/bucket-handlers.go

    	updatedAt, err := globalBucketMetadataSys.Update(ctx, bucket, objectLockConfig, configData)
    	if err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	// Call site replication hook.
    	//
    	// We encode the xml bytes as base64 to ensure there are no encoding
    	// errors.
    	cfgStr := base64.StdEncoding.EncodeToString(configData)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

      local config_path='/etc/srv/kubernetes/kube-controller-manager/kubeconfig'
      params+=("--use-service-account-credentials")
      params+=("--cloud-provider=${CLOUD_PROVIDER_FLAG:-external}")
      params+=("--kubeconfig=${config_path}" "--authentication-kubeconfig=${config_path}" "--authorization-kubeconfig=${config_path}")
      params+=("--root-ca-file=${CA_CERT_BUNDLE_PATH}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. pilot/pkg/model/envoyfilter.go

    	Patches          map[networking.EnvoyFilter_ApplyTo][]*EnvoyFilterConfigPatchWrapper
    	Priority         int32
    	creationTime     time.Time
    }
    
    // EnvoyFilterConfigPatchWrapper is a wrapper over the EnvoyFilter ConfigPatch api object
    // fields are ordered such that this struct is aligned
    type EnvoyFilterConfigPatchWrapper struct {
    	Value     proto.Message
    	Match     *networking.EnvoyFilter_EnvoyConfigObjectMatch
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/sidecar.go

    	// Set of known configs this sidecar depends on.
    	// This field will be used to determine the config/resource scope
    	// which means which config changes will affect the proxies within this scope.
    	configDependencies sets.Set[ConfigHash]
    }
    
    // MarshalJSON implements json.Marshaller
    func (sc *SidecarScope) MarshalJSON() ([]byte, error) {
    	// Json cannot expose unexported fields, so copy the ones we want here
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

      }
    }
    
    # Generates the containerd config.toml file.
    function Configure_Containerd {
      $config_path = Get_Containerd_ConfigPath
      $config_dir = [System.IO.Path]::GetDirectoryName($config_path)
      New-Item $config_dir -ItemType 'directory' -Force | Out-Null
      Set-Content ${config_path} @"
    [plugins.scheduler]
      schedule_delay = '0s'
      startup_delay = '0s'
    [plugins.cri]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top