Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for ISTIO_MUTUAL (0.29 sec)

  1. istioctl/pkg/validate/validate_test.go

    `
    	invalidDuplicateKey = `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: productpage
    spec:
    trafficPolicy: {}
    trafficPolicy:
      tls:
        mode: ISTIO_MUTUAL
    `
    	validDeployment = `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v1
      labels:
        app: helloworld
        version: v1
    spec:
      replicas: 1
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    		{"auto-tcp-server", "DISABLE", "PERMISSIVE", check.Error()},
    		{"auto-tcp-server", "DISABLE", "STRICT", check.Error()},
    		{"auto-tcp-server", "ISTIO_MUTUAL", "DISABLE", check.Error()},
    		{"auto-tcp-server", "ISTIO_MUTUAL", "PERMISSIVE", check.Error()},
    		{"auto-tcp-server", "ISTIO_MUTUAL", "STRICT", check.Error()},
    
    		// These is broken because we will still enable inbound sniffing for the port. Since there is no tls,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    		// ISTIO_MUTUAL TLS mode uses either SDS or default certificate mount paths
    		// therefore, we should fail validation if other TLS fields are set
    		if tls.ServerCertificate != "" {
    			v = AppendValidation(v, fmt.Errorf("ISTIO_MUTUAL TLS cannot have associated server certificate"))
    		}
    		if tls.PrivateKey != "" {
    			v = AppendValidation(v, fmt.Errorf("ISTIO_MUTUAL TLS cannot have associated private key"))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                        enum:
                                        - DISABLE
                                        - SIMPLE
                                        - MUTUAL
                                        - ISTIO_MUTUAL
                                        type: string
                                      privateKey:
                                        description: REQUIRED if mode is `MUTUAL`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  5. 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)
  6. pilot/pkg/networking/util/util_test.go

    				},
    			},
    		},
    	}
    
    	cases := []struct {
    		name    string
    		tlsMode networking.ClientTLSSettings_TLSmode
    		meta    *core.Metadata
    		want    *core.Metadata
    	}{
    		{
    			name:    "ISTIO_MUTUAL TLS",
    			tlsMode: networking.ClientTLSSettings_ISTIO_MUTUAL,
    			meta:    nil,
    			want:    nil,
    		},
    		{
    			name:    "DISABLED TLS",
    			tlsMode: networking.ClientTLSSettings_DISABLE,
    			meta:    nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    verifying the CA signature and SAN for the server certificate corresponding to the host.' nullable: true type: boolean mode: description: Indicates whether connections to this port 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...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. pkg/istio-agent/agent_test.go

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: plaintext
      namespace: default
    spec:
      host: app.com
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    `})
    	if bootstrapGenerator != nil {
    		ds.Discovery.Generators[v3.BootstrapType] = bootstrapGenerator
    	}
    	ds.Discovery.Authenticators = []security.Authenticator{auth}
    	grpcServer := grpc.NewServer(opt)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder_test.go

    					Tls: &networking.ClientTLSSettings{Mode: networking.ClientTLSSettings_MUTUAL},
    				},
    			},
    			expectedSubsetClusters: []*cluster.Cluster{},
    		},
    		{
    			name:        "destination rule with tls mode ISTIO_MUTUAL",
    			cluster:     &cluster.Cluster{Name: "foo", ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS}},
    			clusterMode: DefaultClusterMode,
    			service:     service,
    			port:        servicePort[0],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  10. 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