Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for pilotSAN (0.27 sec)

  1. pkg/bootstrap/option/instances_test.go

    			expected: &model.NodeMetaProxyConfig{DiscoveryAddress: "fake"},
    		},
    		{
    			testName: "pilotSAN",
    			key:      "pilot_SAN",
    			option:   option.PilotSubjectAltName([]string{"fake"}),
    			expected: `[{"exact":"fake"}]`,
    		},
    		{
    			testName: "pilotSAN multi",
    			key:      "pilot_SAN",
    			option:   option.PilotSubjectAltName([]string{"fake", "other"}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent.go

    	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/model/proxy.go

    	// Owner specifies the workload owner (opaque string). Typically, this is the owning controller of
    	// of the workload instance (ex: k8s deployment for a k8s pod).
    	Owner string `json:"OWNER,omitempty"`
    
    	// PilotSAN is the list of subject alternate names for the xDS server.
    	PilotSubjectAltName []string `json:"PILOT_SAN,omitempty"`
    
    	// XDSRootCert defines the root cert to use for XDS connections
    	XDSRootCert string `json:"-"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top