Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for pilotSAN (0.11 sec)

  1. tools/bug-report/pkg/testdata/output/multi_line_entries.log

    2020-06-29T23:37:27.287957Z	info	JWT policy is third-party-jwt
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-29T23:37:27.287957Z	info	JWT policy is third-party-jwt
    2020-06-29T23:37:27.287996Z	info	PilotSAN []string{"istiod.istio-system.svc"}
    2020-06-29T23:37:27.288004Z	info	MixerSAN []string{"spiffe://cluster.local/ns/istio-system/sa/istio-mixer-service-account"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  5. 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