Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for subjectAltNames (0.69 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. 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)
Back to top