Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 115 for configPath (0.26 sec)

  1. istioctl/pkg/kubeinject/testdata/istio-operator.yaml

        ingressService: istio-ingress
        connectTimeout: 1s
        defaultConfig:
          ### ADVANCED SETTINGS #############
          # Where should envoy's configuration be stored in the istio-proxy container
          configPath: "/etc/istio/proxy"
          binaryPath: "/usr/local/bin/envoy"
          # The pseudo service name used for Envoy.
          serviceCluster: istio-proxy
      values:
        global:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 689 bytes
    - Viewed (0)
  2. pkg/bootstrap/instance.go

    func (i *instance) CreateFile() (string, error) {
    	// Create the output file.
    	if err := os.MkdirAll(i.Metadata.ProxyConfig.ConfigPath, 0o700); err != nil {
    		return "", err
    	}
    
    	templateFile := GetEffectiveTemplatePath(i.Metadata.ProxyConfig)
    
    	outputFilePath := configFile(i.Metadata.ProxyConfig.ConfigPath, templateFile)
    	outputFile, err := os.Create(outputFilePath)
    	if err != nil {
    		return "", err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/route.go

    	if !ok {
    		return ""
    	}
    	return renderConfig(config.GetStringValue())
    }
    
    func renderConfig(configPath string) string {
    	if strings.HasPrefix(configPath, "/apis/networking.istio.io/v1alpha3/namespaces/") {
    		pieces := strings.Split(configPath, "/")
    		if len(pieces) != 8 {
    			return ""
    		}
    		return fmt.Sprintf("%s.%s", pieces[7], pieces[5])
    	}
    	return "<unknown>"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 05:38:17 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/testdata/output/multi_line_entries.log

    2020-06-29T23:37:27.287895Z	info	Effective config: binaryPath: /usr/local/bin/envoy
    configPath: ./etc/istio/proxy
    discoveryAddress: istiod.istio-system.svc:15012
    drainDuration: 45s
    envoyAccessLogService: {}
    envoyMetricsService: {}
    parentShutdownDuration: 60s
    proxyAdminPort: 15000
    proxyMetadata:
      DNS_AGENT: ""
    serviceCluster: istio-ingressgateway
    statNameLength: 189
    statusPort: 15020
    tracing:
      zipkin:
        address: zipkin.istio-system:9411
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. pkg/kube/inject/template.go

    	if !ok || originalProxyConfig == nil {
    		return msg
    	}
    	pc := proto.Clone(originalProxyConfig).(*meshconfig.ProxyConfig)
    	defaults := mesh.DefaultProxyConfig()
    	if pc.ConfigPath == defaults.ConfigPath {
    		pc.ConfigPath = ""
    	}
    	if pc.BinaryPath == defaults.BinaryPath {
    		pc.BinaryPath = ""
    	}
    	if pc.ControlPlaneAuthPolicy == defaults.ControlPlaneAuthPolicy {
    		pc.ControlPlaneAuthPolicy = 0
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/kubeconfig/kubeconfig_test.go

    				rt.cc.caCert,
    				rt.ccWithToken.token,
    			)
    			configPath := fmt.Sprintf("%s/etc/kubernetes/%s.conf", tmpdir, rt.name)
    			err := WriteToDisk(configPath, c)
    			if err != rt.expected {
    				t.Errorf(
    					"failed WriteToDisk with an error:\n\texpected: %s\n\t  actual: %s",
    					rt.expected,
    					err,
    				)
    			}
    			newFile, _ := os.ReadFile(configPath)
    			if !bytes.Equal(newFile, rt.file) {
    				t.Errorf(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 06:49:59 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      # TCP connection timeout between Envoy & the application, and between Envoys.
      connectTimeout: 1s
      #
      ### ADVANCED SETTINGS #############
      # Where should envoy's configuration be stored in the istio-proxy container
      configPath: "/etc/istio/proxy"
      binaryPath: "/usr/local/bin/envoy"
      # The pseudo service name used for Envoy.
      serviceCluster: istio-proxy
      # These settings that determine how long an old Envoy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/bootstrap/testdata/tracing_none_golden.json

      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top