Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for ISTIO_MUTUAL (0.26 sec)

  1. istioctl/pkg/describe/describe_test.go

    DestinationRule: productpage for "productpage"
       WARNING POD DOES NOT MATCH ANY SUBSETS.  (Non matching subsets v1)
       Matching subsets: 
          (Non-matching subsets v1)
       Traffic Policy TLS Mode: ISTIO_MUTUAL
       Policies: load balancer/connection pool/outlier detection
       Port Level Settings:
        8080:
          TLS Mode: DISABLE
          Policies: load balancer/connection pool/outlier detection
    VirtualService: bookinfo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  2. manifests/charts/base/crds/crd-all.gen.yaml

                                          Valid Options: DISABLE, SIMPLE, MUTUAL, ISTIO_MUTUAL
                                        enum:
                                        - DISABLE
                                        - SIMPLE
                                        - MUTUAL
                                        - ISTIO_MUTUAL
                                        type: string
                                      privateKey:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  3. pkg/bootstrap/option/convert.go

    				ValidationContextSdsSecretConfig: model.ConstructSdsSecretConfig(model.SDSRootResourceName),
    			},
    		}
    		tlsContext.CommonTlsContext.AlpnProtocols = model.ALPNInMeshH2
    		tlsContext.Sni = tls.Sni
    		// For ISTIO_MUTUAL if custom SNI is not provided, use the default SNI name.
    		if len(tls.Sni) == 0 {
    			tlsContext.Sni = sniName
    		}
    	default:
    		// No TLS.
    		return nil
    	}
    	return tlsContext
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/grpcgen/grpcecho_test.go

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: echo-dr
      namespace: default
    spec:
      host: echo-app.default.svc.cluster.local
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    ---
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
      namespace: default
    spec:
      mtls:
        mode: STRICT
    `,
    	}, echoCfg{version: "v1", tls: true})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. tests/integration/security/pass_through_filter_chain_test.go

    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: {{ .To.ServiceName }}-dr
    spec:
      host: "fake.destination.{{ .To.ServiceName }}"
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    ---`)).
    						BuildAll(nil, apps.Ns1.All).
    						Apply()
    
    					echotest.New(t, apps.Ns1.All.Instances()).
    						WithDefaultFilters(1, 1).
    						FromMatch(match.NotProxylessGRPC).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/values.yaml

        trustDomain: "cluster.local"
    
        defaultConfig:
          proxyMetadata: {}
          tracing:
          #      tlsSettings:
          #        mode: DISABLE # DISABLE, SIMPLE, MUTUAL, ISTIO_MUTUAL
          #        clientCertificate: # example: /etc/istio/tracer/cert-chain.pem
          #        privateKey:        # example: /etc/istio/tracer/key.pem
          #        caCertificates:    # example: /etc/istio/tracer/root-cert.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. pilot/pkg/features/pilot.go

    	MultiRootMesh = env.Register("ISTIO_MULTIROOT_MESH", false,
    		"If enabled, mesh will support certificates signed by more than one trustAnchor for ISTIO_MUTUAL mTLS").Get()
    
    	EnableEnvoyFilterMetrics = env.Register("PILOT_ENVOY_FILTER_STATS", false,
    		"If true, Pilot will collect metrics for envoy filter operations.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/gateway.go

    // ISTIO_MUTUAL  |    ENABLED    |   DISABLED  | support SDS at gateway to terminate workload mTLS, with internal workloads
    //
    //	| for egress or with another trusted cluster for ingress)
    //
    // ISTIO_MUTUAL  |    DISABLED   |   DISABLED  | use file-mounted secret paths to terminate workload mTLS from gateway
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-egress/values.yaml

        trustDomain: "cluster.local"
    
        defaultConfig:
          proxyMetadata: {}
          tracing:
          #      tlsSettings:
          #        mode: DISABLE # DISABLE, SIMPLE, MUTUAL, ISTIO_MUTUAL
          #        clientCertificate: # example: /etc/istio/tracer/cert-chain.pem
          #        privateKey:        # example: /etc/istio/tracer/key.pem
          #        caCertificates:    # example: /etc/istio/tracer/root-cert.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/gateway_test.go

    		result            *auth.DownstreamTlsContext
    		transportProtocol istionetworking.TransportProtocol
    		mesh              *meshconfig.MeshConfig
    	}{
    		{
    			name: "mesh SDS enabled, tls mode ISTIO_MUTUAL",
    			server: &networking.Server{
    				Hosts: []string{"httpbin.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)
Back to top