Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for MUTUAL (0.17 sec)

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

    					t.Fatalf("expected TLSContext SNI %v; got %v", simpleTLSSettingsWithCerts.Sni, got)
    				}
    			},
    		},
    		{
    			name:                       "user specified mutual tls",
    			mtlsCtx:                    userSupplied,
    			discoveryType:              cluster.Cluster_EDS,
    			tls:                        mutualTLSSettingsWithCerts,
    			expectTransportSocket:      true,
    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. pilot/pkg/networking/core/sidecar_simulation_test.go

      name: sidecar
      namespace: default
    spec:
      ingress:
        - defaultEndpoint: 0.0.0.0:9080
          port:
            name: tls
            number: 9080
            protocol: %s
          tls:
            mode: MUTUAL
            privateKey: "httpbinkey.pem"
            serverCertificate: "httpbin.pem"
            caCertificates: "rootCA.pem"
      workloadSelector:
        labels:
          app: foo
    ---
    `, protocol)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		allErrs = append(allErrs, validateCustomResourceDefinitionVersion(ctx, &version, fldPath.Child("versions").Index(i), hasStatusEnabled(subresources), opts)...)
    	}
    
    	// The top-level and per-version fields are mutual exclusive
    	if spec.Validation != nil && hasPerVersionSchema(spec.Versions) {
    		allErrs = append(allErrs, field.Forbidden(fldPath.Child("validation"), "top-level and per-version schemas are mutually exclusive"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	CipherSuite uint16
    
    	// NegotiatedProtocol is the application protocol negotiated with ALPN.
    	NegotiatedProtocol string
    
    	// NegotiatedProtocolIsMutual used to indicate a mutual NPN negotiation.
    	//
    	// Deprecated: this value is always true.
    	NegotiatedProtocolIsMutual bool
    
    	// ServerName is the value of the Server Name Indication extension sent by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		Labels: map[string]string{
    			"app":                      "prod-app",
    			label.SecurityTlsMode.Name: "mutual",
    		},
    		Metadata: &model.NodeMetadata{
    			ServiceAccount: "account",
    			ClusterID:      clusterID,
    			Labels: map[string]string{
    				"app":                      "prod-app",
    				label.SecurityTlsMode.Name: "mutual",
    			},
    		},
    	})
    
    	expected := model.ServiceTarget{
    		Service: &model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    			SupportedVersions: []uint16{VersionTLS13, VersionTLS12},
    			config: &Config{
    				CipherSuites: []uint16{TLS_RSA_WITH_AES_128_GCM_SHA256},
    				MaxVersion:   VersionTLS12,
    			},
    		}, ""}, // Check that mutual version selection works.
    
    		{ecdsaCert, &ClientHelloInfo{
    			CipherSuites:      []uint16{TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256},
    			SupportedCurves:   []CurveID{CurveP256},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    	}
    	namespace := gw.Namespace
    	switch mode {
    	case k8s.TLSModeTerminate:
    		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 {
    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