Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for proxyConfig (0.13 sec)

  1. pkg/security/security.go

    )
    
    type ImpersonatedIdentityContextKey struct{}
    
    // Options provides all of the configuration parameters for secret discovery service
    // and CA configuration. Used in both Istiod and Agent.
    // TODO: ProxyConfig should have most of those, and be passed to all components
    // (as source of truth)
    type Options struct {
    	// CAEndpoint is the CA endpoint to which node agent sends CSR request.
    	CAEndpoint string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    	return aae.Msg
    }
    
    // ValidateProxyConfig validates a ProxyConfig CR (as opposed to the MeshConfig field).
    var ValidateProxyConfig = RegisterValidateFunc("ValidateProxyConfig",
    	func(cfg config.Config) (Warning, error) {
    		spec, ok := cfg.Spec.(*networkingv1beta1.ProxyConfig)
    		if !ok {
    			return nil, fmt.Errorf("cannot cast to proxyconfig")
    		}
    
    		errs := Validation{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    				test.SetForTest(t, &features.TraceSampling, tc.envPilotSampling)
    			}
    
    			m := mesh.DefaultMeshConfig()
    			m.ProxyHttpPort = 15007
    			m.EnableTracing = true
    			m.DefaultConfig = &meshconfig.ProxyConfig{
    				Tracing: &meshconfig.Tracing{
    					CustomTags:       tc.in.CustomTags,
    					MaxPathTagLength: tc.in.MaxPathTagLength,
    					Sampling:         tc.in.Sampling,
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top