Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for XDSHeaders (0.26 sec)

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

    	if wasmInsecureRegistries != "" {
    		insecureRegistries = strings.Split(wasmInsecureRegistries, ",")
    	}
    	o := &istioagent.AgentOptions{
    		XDSRootCerts:             xdsRootCA,
    		CARootCerts:              caRootCA,
    		XDSHeaders:               map[string]string{},
    		XdsUdsPath:               filepath.Join(cfg.ConfigPath, "XDS"),
    		IsIPv6:                   proxy.IsIPv6(),
    		ProxyType:                proxy.Type,
    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. pkg/istio-agent/xds_proxy.go

    		stopChan:              make(chan struct{}),
    		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,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy_delta.go

    	}
    	defer upstreamConn.Close()
    
    	xds := discovery.NewAggregatedDiscoveryServiceClient(upstreamConn)
    	ctx = metadata.AppendToOutgoingContext(context.Background(), "ClusterID", p.clusterID)
    	for k, v := range p.xdsHeaders {
    		ctx = metadata.AppendToOutgoingContext(ctx, k, v)
    	}
    	// We must propagate upstream termination to Envoy. This ensures that we resume the full XDS sequence on new connection
    	return p.handleDeltaUpstream(ctx, con, xds)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent.go

    	// CARootCerts of the location of the root CA for the CA connection. Used for setting platform certs or
    	// using custom roots.
    	CARootCerts string
    
    	// Extra headers to add to the XDS connection.
    	XDSHeaders map[string]string
    
    	// Is the proxy an IPv6 proxy
    	IsIPv6 bool
    
    	// Path to local UDS to communicate with Envoy
    	XdsUdsPath string
    
    	// Ability to retrieve ProxyConfig dynamically through XDS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top