Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for MUTUAL (0.23 sec)

  1. pkg/config/validation/validation_test.go

    			},
    			"", "",
    		},
    		{
    			"mutual",
    			&networking.ServerTLSSettings{
    				Mode:              networking.ServerTLSSettings_MUTUAL,
    				ServerCertificate: "Captain Jean-Luc Picard",
    				PrivateKey:        "Khan Noonien Singh",
    				CaCertificates:    "Commander William T. Riker",
    			},
    			"", "",
    		},
    		{
    			"mutual sds",
    			&networking.ServerTLSSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    		if found {
    			if alpnOverride.GetStringValue() != "false" {
    				t.Errorf("alpn_override:%s tlsMode:%s, should be false for either TLS mode SIMPLE or MUTUAL", alpnOverride, tlsMode)
    			}
    		} else {
    			t.Errorf("alpn_override metadata should be written for either TLS mode SIMPLE or MUTUAL")
    		}
    	} else if ok {
    		alpnOverride, found := istio.Fields[util.AlpnOverrideMetadataKey]
    		if found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_test.go

    										},
    									},
    								},
    							},
    						},
    					},
    				},
    				RequireClientCertificate: proto.BoolFalse,
    			},
    		},
    		{
    			name: "no credential name key and cert tls MUTUAL",
    			server: &networking.Server{
    				Hosts: []string{"httpbin.example.com", "bookinfo.example.com"},
    				Port: &networking.Port{
    					Protocol: string(protocol.HTTPS),
    				},
    				Tls: &networking.ServerTLSSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    		if tls.ServerCertificate == "" {
    			v = AppendValidation(v, fmt.Errorf("MUTUAL TLS requires a server certificate"))
    		}
    		if tls.PrivateKey == "" {
    			v = AppendValidation(v, fmt.Errorf("MUTUAL TLS requires a private key"))
    		}
    		if tls.CaCertificates == "" {
    			v = AppendValidation(v, fmt.Errorf("MUTUAL TLS requires a client CA bundle"))
    		}
    	}
    	if tls.CaCrl != "" {
    		if tls.CredentialName != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    		// Mark the goroutine which called stopTheWorld preemptible so its
    		// stack may be scanned.
    		// This lets a mark worker scan us while we try to stop the world
    		// since otherwise we could get in a mutual preemption deadlock.
    		// We must not modify anything on the G stack because a stack shrink
    		// may occur. A stack shrink is otherwise OK though because in order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top