Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for controlPlaneAuthPolicy (0.39 sec)

  1. pkg/istio-agent/xds_proxy.go

    	}
    	return options, nil
    }
    
    // Returns the TLS option to use when talking to Istiod
    func (p *XdsProxy) getTLSOptions(agent *Agent) (*istiogrpc.TLSOptions, error) {
    	if agent.proxyConfig.ControlPlaneAuthPolicy == meshconfig.AuthenticationPolicy_NONE {
    		return nil, nil
    	}
    	xdsCACertPath, err := agent.FindRootCAForXDS()
    	if err != nil {
    		return nil, fmt.Errorf("failed to find root CA cert for XDS: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. pkg/config/validation/agent/validation.go

    	}
    
    	if err := ValidatePort(int(config.ProxyAdminPort)); err != nil {
    		errs = multierror.Append(errs, multierror.Prefix(err, "invalid proxy admin port:"))
    	}
    
    	if err := ValidateControlPlaneAuthPolicy(config.ControlPlaneAuthPolicy); err != nil {
    		errs = multierror.Append(errs, multierror.Prefix(err, "invalid authentication policy:"))
    	}
    
    	if err := ValidatePort(int(config.StatusPort)); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top