Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ISTIO_MUTUAL (0.19 sec)

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

    								},
    							},
    						},
    					},
    					Sni: "some-sni.com",
    				},
    				err: nil,
    			},
    		},
    		// ecdh curves from MeshConfig should be ignored for ISTIO_MUTUAL mode
    		{
    			name: "tls mode ISTIO_MUTUAL with EcdhCurves specified in Mesh Config",
    			opts: &buildClusterOpts{
    				mutable: newTestCluster(),
    				mesh: &meshconfig.MeshConfig{
    					TlsDefaults: &meshconfig.MeshConfig_TLSConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    							if from.Config().HasProxyCapabilities() && !from.Config().HasAnyWaypointProxy() {
    								if from.Config().HasSidecar() && !opts.To.Config().HasProxyCapabilities() {
    									// Sidecar respects it ISTIO_MUTUAL, will only send mTLS
    									return false
    								}
    								return true
    							}
    							if !from.Config().HasProxyCapabilities() && opts.To.Config().HasAnyWaypointProxy() {
    								// TODO: support hairpin
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    		out.Mode = istio.ServerTLSSettings_SIMPLE
    		if tls.Options != nil {
    			switch tls.Options[gatewayTLSTerminateModeKey] {
    			case "MUTUAL":
    				out.Mode = istio.ServerTLSSettings_MUTUAL
    			case "ISTIO_MUTUAL":
    				out.Mode = istio.ServerTLSSettings_ISTIO_MUTUAL
    				return out, nil
    			}
    		}
    		if len(tls.CertificateRefs) != 1 {
    			// This is required in the API, should be rejected in validation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top