Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ProxyIPAddresses (0.21 sec)

  1. pilot/cmd/pilot-agent/options/agent.go

    			ModuleExpiry:          wasmModuleExpiry,
    			PurgeInterval:         wasmPurgeInterval,
    			HTTPRequestTimeout:    wasmHTTPRequestTimeout,
    			HTTPRequestMaxRetries: wasmHTTPRequestMaxRetries,
    		},
    		ProxyIPAddresses:            proxy.IPAddresses,
    		ServiceNode:                 proxy.ServiceNode(),
    		EnvoyStatusPort:             envoyStatusPortEnv,
    		EnvoyPrometheusPort:         envoyPrometheusPortEnv,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    	}
    	switch discoveryType {
    	case cluster.Cluster_STRICT_DNS, cluster.Cluster_LOGICAL_DNS:
    		if networkutil.AllIPv4(cb.proxyIPAddresses) {
    			// IPv4 only
    			c.DnsLookupFamily = cluster.Cluster_V4_ONLY
    		} else if networkutil.AllIPv6(cb.proxyIPAddresses) {
    			// IPv6 only
    			c.DnsLookupFamily = cluster.Cluster_V6_ONLY
    		} else {
    			// Dual Stack
    			if features.EnableDualStack {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster.go

    				continue
    			}
    			if hostIP == model.PodIPAddressPrefix {
    				for _, proxyIPAddr := range cb.proxyIPAddresses {
    					if netutil.IsIPv4Address(proxyIPAddr) {
    						endpointAddress = proxyIPAddr
    						break
    					}
    				}
    				// if there is no any IPv4 address in proxyIPAddresses
    				if endpointAddress == "" {
    					endpointAddress = model.LocalhostAddressPrefix
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent.go

    	// Path to local UDS to communicate with Envoy
    	XdsUdsPath string
    
    	// Ability to retrieve ProxyConfig dynamically through XDS
    	EnableDynamicProxyConfig bool
    
    	// All of the proxy's IP Addresses
    	ProxyIPAddresses []string
    
    	// Envoy status port (that circles back to the agent status port). Really belongs to the proxy config.
    	// Cannot be eradicated because mistakes have been made.
    	EnvoyStatusPort int
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. pkg/istio-agent/xds_proxy.go

    		healthChecker:         health.NewWorkloadHealthChecker(ia.proxyConfig.ReadinessProbe, envoyProbe, ia.cfg.ProxyIPAddresses, ia.cfg.IsIPv6),
    		xdsHeaders:            ia.cfg.XDSHeaders,
    		xdsUdsPath:            ia.cfg.XdsUdsPath,
    		wasmCache:             cache,
    		proxyAddresses:        ia.cfg.ProxyIPAddresses,
    		ia:                    ia,
    		downstreamGrpcOptions: ia.cfg.DownstreamGrpcOptions,
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. pkg/istio-agent/agent_test.go

    		resp.ProxyConfig.BinaryPath = path
    	}
    	resp.ProxyConfig.TerminationDrainDuration = nil           // no need to be graceful in a test
    	resp.AgentConfig.ProxyIPAddresses = []string{"127.0.0.1"} // ensures IPv4 binding
    	resp.AgentConfig.Platform = &platform.Unknown{}           // disable discovery
    
    	// Run through opts again to apply settings
    	for _, opt := range opts {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top