Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for DiscoveryAddress (1.03 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)
    }
    
    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)
Back to top