Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EnableDynamicProxyConfig (0.33 sec)

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

    		XDSHeaders:               map[string]string{},
    		XdsUdsPath:               filepath.Join(cfg.ConfigPath, "XDS"),
    		IsIPv6:                   proxy.IsIPv6(),
    		ProxyType:                proxy.Type,
    		EnableDynamicProxyConfig: enableProxyConfigXdsEnv,
    		WASMOptions: wasm.Options{
    			InsecureRegistries:    sets.New(insecureRegistries...),
    			ModuleExpiry:          wasmModuleExpiry,
    			PurgeInterval:         wasmPurgeInterval,
    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/agent.go

    	// 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
    	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.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy.go

    				log.Errorf("failed to unmarshal name table: %v", err)
    				return err
    			}
    			ia.localDNSServer.UpdateLookupTable(&nt)
    			return nil
    		}
    	}
    	if ia.cfg.EnableDynamicProxyConfig && ia.secretCache != nil {
    		proxy.handlers[model.ProxyConfigType] = func(resp *anypb.Any) error {
    			pc := &meshconfig.ProxyConfig{}
    			if err := resp.UnmarshalTo(pc); err != nil {
    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