Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 115 for configPath (0.29 sec)

  1. pkg/bootstrap/testdata/stats_compression_unknown_golden.json

    _IPS":"10.3.3.3,10.4.4.4,10.5.5.5,10.6.6.6","ISTIO_VERSION":"binary-1.0","OUTLIER_LOG_PATH":"/dev/stdout","PILOT_SAN":["spiffe://cluster.local/ns/istio-system/sa/istio-pilot-service-account"],"PROXY_CONFIG":{"binaryPath":"/usr/local/bin/envoy","configPath":"/tmp/bootstrap/stats_compression_unknown","controlPlaneAuthPolicy":"MUTUAL_TLS","customConfigFile":"envoy_bootstrap.json","discoveryAddress":"mypilot:15011","drainDuration":"5s","envoyAccessLogService":{"address":"accesslog-service:15000"},"e...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/stats_compression_zstd_golden.json

    _IPS":"10.3.3.3,10.4.4.4,10.5.5.5,10.6.6.6","ISTIO_VERSION":"binary-1.0","OUTLIER_LOG_PATH":"/dev/stdout","PILOT_SAN":["spiffe://cluster.local/ns/istio-system/sa/istio-pilot-service-account"],"PROXY_CONFIG":{"binaryPath":"/usr/local/bin/envoy","configPath":"/tmp/bootstrap/stats_compression_zstd","controlPlaneAuthPolicy":"MUTUAL_TLS","customConfigFile":"envoy_bootstrap.json","discoveryAddress":"mypilot:15011","drainDuration":"5s","envoyAccessLogService":{"address":"accesslog-service:15000"},"envo...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. pkg/bootstrap/testdata/stats_compression_gzip_golden.json

    _IPS":"10.3.3.3,10.4.4.4,10.5.5.5,10.6.6.6","ISTIO_VERSION":"binary-1.0","OUTLIER_LOG_PATH":"/dev/stdout","PILOT_SAN":["spiffe://cluster.local/ns/istio-system/sa/istio-pilot-service-account"],"PROXY_CONFIG":{"binaryPath":"/usr/local/bin/envoy","configPath":"/tmp/bootstrap/stats_compression_gzip","controlPlaneAuthPolicy":"MUTUAL_TLS","customConfigFile":"envoy_bootstrap.json","discoveryAddress":"mypilot:15011","drainDuration":"5s","envoyAccessLogService":{"address":"accesslog-service:15000"},"envo...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. pkg/config/validation/agent/validation_test.go

    				got == nil, combo.Valid, got, combo.Drain)
    		}
    	}
    }
    
    func TestValidateMeshConfigProxyConfig(t *testing.T) {
    	valid := &meshconfig.ProxyConfig{
    		ConfigPath:             "/etc/istio/proxy",
    		BinaryPath:             "/usr/local/bin/envoy",
    		DiscoveryAddress:       "istio-pilot.istio-system:15010",
    		ProxyAdminPort:         15000,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  5. tools/packaging/common/envoy_bootstrap.json

              "endpoints": [{
                "lb_endpoints": [{
                  "endpoint": {
                    "address":{
                      "pipe": {
                        "path": "{{ .config.ConfigPath }}/XDS"
                      }
                    }
                  }
                }]
              }]
            },
            "circuit_breakers": {
              "thresholds": [
                {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. pkg/kube/inject/inject_test.go

    	}
    }
    
    func TestCleanProxyConfig(t *testing.T) {
    	overrides := mesh.DefaultProxyConfig()
    	overrides.ConfigPath = "/foo/bar"
    	overrides.DrainDuration = durationpb.New(7 * time.Second)
    	overrides.ProxyMetadata = map[string]string{
    		"foo": "barr",
    	}
    	explicit := mesh.DefaultProxyConfig()
    	explicit.ConfigPath = constants.ConfigPathDir
    	explicit.DrainDuration = durationpb.New(45 * time.Second)
    	cases := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. pkg/config/mesh/mesh.go

    func DefaultProxyConfig() *meshconfig.ProxyConfig {
    	// TODO: include revision based on REVISION env
    	// TODO: set default namespace based on POD_NAMESPACE env
    	return &meshconfig.ProxyConfig{
    		ConfigPath:               constants.ConfigPathDir,
    		ClusterName:              &meshconfig.ProxyConfig_ServiceCluster{ServiceCluster: constants.ServiceClusterName},
    		DrainDuration:            durationpb.New(45 * time.Second),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. 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)
  9. pkg/bootstrap/instance_test.go

    		return nil, err
    	}
    	cfg := &meshconfig.ProxyConfig{}
    
    	err = prototext.Unmarshal(content, cfg)
    	if err != nil {
    		return nil, err
    	}
    
    	// Exported from makefile or env
    	cfg.ConfigPath = filepath.Join(out, "/bootstrap/", base)
    	cfg.CustomConfigFile = filepath.Join(env.IstioSrc, "/tools/packaging/common/envoy_bootstrap.json")
    	if cfg.StatusPort == 0 {
    		cfg.StatusPort = 15020
    	}
    	return cfg, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

              protocol: TCP
              name: http-envoy-prom
            args:
            - proxy
            - sidecar
            - --domain
            - $(POD_NAMESPACE).svc.{{ .Values.global.proxy.clusterDomain }}
            - --configPath
            - "/etc/istio/proxy"
            - --binaryPath
            - "/usr/local/bin/envoy"
            - --serviceCluster
            {{ if ne "" (index .ObjectMeta.Labels "app") -}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top