Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for controlPlaneAuthPolicy (0.28 sec)

  1. pkg/bootstrap/testdata/stats_compression_unknown_golden.json

    inary-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"},"envoyMetricsService":{"address":"metrics-service:15000","tlsSet...
    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

    :"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"},"envoyMetricsService":{"address":"metrics-service:15000","tlsSet...
    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/config/validation/agent/validation_test.go

    		EnvoyMetricsService:    &meshconfig.RemoteService{Address: "metrics-service.istio-system:15000"},
    		EnvoyAccessLogService:  &meshconfig.RemoteService{Address: "accesslog-service.istio-system:15000"},
    		ControlPlaneAuthPolicy: meshconfig.AuthenticationPolicy_MUTUAL_TLS,
    		Tracing:                nil,
    		StatusPort:             15020,
    		PrivateKeyProvider:     nil,
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

            - --concurrency
            - "{{ .ProxyConfig.Concurrency }}"
            {{ end -}}
            {{- if .Values.global.controlPlaneSecurityEnabled }}
            - --controlPlaneAuthPolicy
            - MUTUAL_TLS
            {{- else }}
            - --controlPlaneAuthPolicy
            - NONE
            {{- end }}
            - --dnsRefreshRate
            - {{ valueOrDefault .Values.global.proxy.dnsRefreshRate "300s" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

            - --concurrency
            - "{{ .ProxyConfig.Concurrency }}"
            {{ end -}}
            {{- if .Values.global.controlPlaneSecurityEnabled }}
            - --controlPlaneAuthPolicy
            - MUTUAL_TLS
            {{- else }}
            - --controlPlaneAuthPolicy
            - NONE
            {{- end }}
            - --dnsRefreshRate
            - {{ valueOrDefault .Values.global.proxy.dnsRefreshRate "300s" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

            - --concurrency
            - "{{ .ProxyConfig.Concurrency }}"
            {{ end -}}
            {{- if .Values.global.controlPlaneSecurityEnabled }}
            - --controlPlaneAuthPolicy
            - MUTUAL_TLS
            {{- else }}
            - --controlPlaneAuthPolicy
            - NONE
            {{- end }}
            - --dnsRefreshRate
            - {{ valueOrDefault .Values.global.proxy.dnsRefreshRate "300s" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. pkg/config/mesh/mesh.go

    		DrainDuration:            durationpb.New(45 * time.Second),
    		TerminationDrainDuration: durationpb.New(5 * time.Second),
    		ProxyAdminPort:           15000,
    		ControlPlaneAuthPolicy:   meshconfig.AuthenticationPolicy_MUTUAL_TLS,
    		DiscoveryAddress:         "istiod.istio-system.svc:15012",
    
    		// Code defaults
    		BinaryPath:     constants.BinaryPathFilename,
    		StatNameLength: 189,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-29T23:37:27.286034Z	info	Apply mesh config from file accessLogEncoding: TEXT
    accessLogFile: /dev/stdout
    accessLogFormat: ""
    defaultConfig:
      concurrency: 2
      configPath: ./etc/istio/proxy
      connectTimeout: 10s
      controlPlaneAuthPolicy: NONE
      discoveryAddress: istiod.istio-system.svc:15012
      drainDuration: 45s
      parentShutdownDuration: 1m0s
      proxyAdminPort: 15000
      proxyMetadata:
        DNS_AGENT: ""
      serviceCluster: istio-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  9. pkg/istio-agent/agent.go

    func (a *Agent) WaitForSigterm() bool {
    	return a.EnvoyDisabled() && !a.envoyOpts.TestOnly
    }
    
    func (a *Agent) generateNodeMetadata() (*model.Node, error) {
    	var pilotSAN []string
    	if a.proxyConfig.ControlPlaneAuthPolicy == mesh.AuthenticationPolicy_MUTUAL_TLS {
    		// Obtain Pilot SAN, using DNS.
    		pilotSAN = []string{config.GetPilotSan(a.proxyConfig.DiscoveryAddress)}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  10. pkg/istio-agent/xds_proxy.go

    	}
    	return options, nil
    }
    
    // Returns the TLS option to use when talking to Istiod
    func (p *XdsProxy) getTLSOptions(agent *Agent) (*istiogrpc.TLSOptions, error) {
    	if agent.proxyConfig.ControlPlaneAuthPolicy == meshconfig.AuthenticationPolicy_NONE {
    		return nil, nil
    	}
    	xdsCACertPath, err := agent.FindRootCAForXDS()
    	if err != nil {
    		return nil, fmt.Errorf("failed to find root CA cert for XDS: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top