Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for subjectAltNames (0.24 sec)

  1. pilot/pkg/networking/core/cluster_builder_test.go

    					Tls: &networking.ClientTLSSettings{
    						Mode:            networking.ClientTLSSettings_SIMPLE,
    						CaCertificates:  constants.RootCertFilename,
    						Sni:             "foo.default.svc.cluster.local",
    						SubjectAltNames: []string{"foo.default.svc.cluster.local"},
    					},
    				},
    			},
    			enableAutoSni:            false,
    			enableVerifyCertAtClient: false,
    			expectTLSContext: &tls.UpstreamTlsContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway_test.go

    					Protocol: string(protocol.HTTPS),
    				},
    				Tls: &networking.ServerTLSSettings{
    					Mode:            networking.ServerTLSSettings_SIMPLE,
    					CredentialName:  "ingress-sds-resource-name",
    					SubjectAltNames: []string{"subject.name.a.com", "subject.name.b.com"},
    				},
    			},
    			result: &auth.DownstreamTlsContext{
    				CommonTlsContext: &auth.CommonTlsContext{
    					AlpnProtocols: util.ALPNHttp,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    			Host: "reviews",
    			TrafficPolicy: &networking.TrafficPolicy{
    				Tls: &networking.ClientTLSSettings{
    					Mode:            networking.ClientTLSSettings_SIMPLE,
    					CaCertificates:  "test",
    					SubjectAltNames: []string{"reviews.default.svc"},
    				},
    			},
    		}, valid: true},
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    should be secured using TLS. enum: - DISABLE - SIMPLE - MUTUAL - ISTIO_MUTUAL type: string privateKey: description: REQUIRED if mode is `MUTUAL`. type: string sni: description: SNI string to present to the server during TLS handshake. type: string subjectAltNames: description: A list of alternate names to verify the subject identity in the certificate. items: type: string type: array type: object type: object type: array proxyProtocol: description: The upstream PROXY protocol settings. properties: version:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    					} else {
    						errs = AppendValidation(errs, agent.ValidatePort(port))
    					}
    				}
    			}
    
    			if i.Tls != nil {
    				if len(i.Tls.SubjectAltNames) > 0 {
    					errs = AppendValidation(errs, fmt.Errorf("sidecar: subjectAltNames is not supported in ingress tls"))
    				}
    				if i.Tls.HttpsRedirect {
    					errs = AppendValidation(errs, fmt.Errorf("sidecar: httpsRedirect is not supported"))
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    signer defines:\n 1. Trust distribution: how trust (CA bundles) are distributed.\n 2. Permitted subjects: and behavior when a disallowed subject is requested.\n 3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.\n 4. Required, permitted, or forbidden key usages / extended key usages.\n 5. Expiration/certificate lifetime: whether it is fixed...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
Back to top