Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for controlPlaneAuthPolicy (0.36 sec)

  1. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-29T23:37:27.286034Z	info	Apply mesh config from file accessLogEncoding: TEXT
    accessLogFile: /dev/stdout
    accessLogFormat: ""
    defaultConfig:
      concurrency: 2
      configPath: ./etc/istio/proxy
      connectTimeout: 10s
      controlPlaneAuthPolicy: NONE
      discoveryAddress: istiod.istio-system.svc:15012
      drainDuration: 45s
      parentShutdownDuration: 1m0s
      proxyAdminPort: 15000
      proxyMetadata:
        DNS_AGENT: ""
      serviceCluster: istio-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent.go

    func (a *Agent) WaitForSigterm() bool {
    	return a.EnvoyDisabled() && !a.envoyOpts.TestOnly
    }
    
    func (a *Agent) generateNodeMetadata() (*model.Node, error) {
    	var pilotSAN []string
    	if a.proxyConfig.ControlPlaneAuthPolicy == mesh.AuthenticationPolicy_MUTUAL_TLS {
    		// Obtain Pilot SAN, using DNS.
    		pilotSAN = []string{config.GetPilotSan(a.proxyConfig.DiscoveryAddress)}
    	}
    
    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

    	}
    	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)
  4. 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