Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for discoveryAddress (0.3 sec)

  1. pilot/pkg/model/cluster_local.go

    		defaultClusterLocalHosts = append(defaultClusterLocalHosts, host.Name(s+"."+domainSuffix))
    	}
    
    	if discoveryHost, _, err := e.GetDiscoveryAddress(); err != nil {
    		log.Errorf("failed to make discoveryAddress cluster-local: %v", err)
    	} else {
    		if !strings.HasSuffix(string(discoveryHost), domainSuffix) {
    			discoveryHost += host.Name("." + domainSuffix)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. tools/packaging/common/istio-start.sh

    DEFAULT_PROXY_CONFIG="
    serviceCluster: $SVC
    controlPlaneAuthPolicy: ${CONTROL_PLANE_AUTH_POLICY}
    "
    if [ -n "${CUSTOM_PILOT_ADDRESS}" ]; then
      PROXY_CONFIG="$PROXY_CONFIG
    discoveryAddress: ${CUSTOM_PILOT_ADDRESS}
    "
    fi
    
    # PROXY_CONFIG > PILOT_ADDRESS > ISTIO_PILOT_PORT
    export PROXY_CONFIG=${PROXY_CONFIG:-${DEFAULT_PROXY_CONFIG}}
    
    if [ "${EXEC_USER}" == "${USER:-}" ] ; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. pkg/bootstrap/option/instances.go

    }
    
    func RuntimeFlags(flags map[string]any) Instance {
    	return newOptionOrSkipIfZero("runtime_flags", flags).withConvert(jsonConverter(flags))
    }
    
    func DiscoveryAddress(value string) Instance {
    	return newOption("discovery_address", value)
    }
    
    func XDSRootCert(value string) Instance {
    	return newOption("xds_root_cert", value)
    }
    
    func Localhost(value LocalhostValue) Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/options/options.go

    	caProviderEnv = env.Register("CA_PROVIDER", "Citadel", "name of authentication provider").Get()
    	caEndpointEnv = env.Register("CA_ADDR", "", "Address of the spiffe certificate provider. Defaults to discoveryAddress").Get()
    
    	trustDomainEnv = env.Register("TRUST_DOMAIN", "cluster.local",
    		"The trust domain for spiffe certificates").Get()
    
    	secretTTLEnv = env.Register("SECRET_TTL", 24*time.Hour,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. architecture/security/istio-agent.md

    a new one will be generated on demand.
    
    ## Configuration
    
    | Variable | Description |
    | - | - |
    |CA_ADDR|Address of CA, defaults to discoveryAddress|
    |CA_PROVIDER|Type of CA; supported values are GoogleCA or Citadel (although anything but GoogleCA will use Citadel); defaults to Citadel|
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/tracing_datadog.proxycfg

    config_path:               "/etc/istio/proxy"
    binary_path:               "/usr/local/bin/envoy"
    service_cluster:           "istio-proxy"
    drain_duration:            {seconds: 2}
    discovery_address:         "istio-pilot:15010"
    proxy_admin_port:          15000
    control_plane_auth_policy: NONE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 359 bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/auth.proxycfg

    config_path:               "/etc/istio/proxy"
    binary_path:               "/usr/local/bin/envoy"
    service_cluster:           "istio-proxy"
    drain_duration:            {seconds: 2}
    discovery_address:         "istio-pilot:15011"
    proxy_admin_port:          15000
    control_plane_auth_policy: MUTUAL_TLS
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 343 bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/tracing_lightstep.proxycfg

    config_path:               "/etc/istio/proxy"
    binary_path:               "/usr/local/bin/envoy"
    service_cluster:           "istio-proxy"
    drain_duration:            {seconds: 2}
    discovery_address:         "istio-pilot:15010"
    proxy_admin_port:          15000
    control_plane_auth_policy: NONE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 403 bytes
    - Viewed (0)
  9. pkg/bootstrap/testdata/tracing_tls.proxycfg

    config_path:               "/etc/istio/proxy"
    binary_path:               "/usr/local/bin/envoy"
    service_cluster:           "istio-proxy"
    drain_duration:            {seconds: 2}
    discovery_address:         "istio-pilot:15010"
    proxy_admin_port:          15000
    control_plane_auth_policy: NONE
    tracing:                   { zipkin: { address: "localhost:6000" }, tls_settings: { mode: SIMPLE, ca_certificates: "/etc/zipkin/ca.pem"}}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 489 bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/tracing_tls_custom_sni.proxycfg

    config_path:               "/etc/istio/proxy"
    binary_path:               "/usr/local/bin/envoy"
    service_cluster:           "istio-proxy"
    drain_duration:            {seconds: 2}
    discovery_address:         "istio-pilot:15010"
    proxy_admin_port:          15000
    control_plane_auth_policy: NONE
    tracing:                   { zipkin: { address: "localhost:6000" }, tls_settings: { mode: SIMPLE, ca_certificates: "/etc/zipkin/ca.pem", sni: "zipkin-custom-sni"}}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 515 bytes
    - Viewed (0)
Back to top