Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 149 for mtls (0.07 sec)

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

    			},
    			Strict: simulation.Result{
    				// TLS, but not mTLS
    				Error: simulation.ErrMTLSError,
    			},
    		},
    		{
    			Name: "mtls to http",
    			Call: simulation.Call{
    				Port:     80,
    				Protocol: simulation.HTTP,
    				TLS:      simulation.MTLS,
    				CallMode: simulation.CallModeInbound,
    			},
    			Disabled: simulation.Result{
    				// TLS is not terminated, so we will attempt to decode as HTTP and fail
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_inbound.go

    		// to handle mTLS vs plaintext and HTTP vs TCP (depending on protocol and PeerAuthentication).
    		var opts []FilterChainMatchOptions
    		mtls := lb.authnBuilder.ForPort(cc.port.TargetPort)
    		// Chain has explicit user TLS config. This can only apply when the TLS mode is DISABLE to avoid conflicts.
    		if cc.tlsSettings != nil && mtls.Mode == model.MTLSDisable {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. pilot/pkg/simulation/traffic.go

    	}
    	// For simplicity, set SNI automatically for TLS traffic.
    	if c.Sni == "" && (c.TLS == TLS) {
    		c.Sni = c.HostHeader
    	}
    	if c.Path == "" {
    		c.Path = "/"
    	}
    	if c.TLS == "" {
    		c.TLS = Plaintext
    	}
    	if c.Address == "" {
    		// pick a random address, assumption is the test does not care
    		c.Address = "1.3.3.7"
    	}
    	if c.TLS == MTLS && c.Alpn == "" {
    		c.Alpn = protocolToMTLSAlpn(c.Protocol)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. releasenotes/notes/push-cds-on-auto-passthrough-gateway-change.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:59 UTC 2024
    - 181 bytes
    - Viewed (0)
  5. pilot/pkg/networking/grpcgen/lds.go

    	// auto-mtls label is set - clients will attempt to connect using mtls, and
    	// gRPC doesn't support permissive.
    	if node.Labels[label.SecurityTlsMode.Name] == "istio" && mode == model.MTLSPermissive {
    		mode = model.MTLSStrict
    	}
    
    	var tlsContext *tls.DownstreamTlsContext
    	if mode != model.MTLSDisable && mode != model.MTLSUnknown {
    		tlsContext = &tls.DownstreamTlsContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/stats_test.go

    			// clt(https:443) -> sidecar(tls:443) -> istio-mtls -> (TLS:443)egress-gateway-> vs(tcp:443) -> cnn.com
    			t.ConfigIstio().File(apps.Namespace.Name(), filepath.Join(base, "istio-mtls-dest-rule.yaml")).ApplyOrFail(t)
    			t.ConfigIstio().File(apps.Namespace.Name(), filepath.Join(base, "istio-mtls-gateway.yaml")).ApplyOrFail(t)
    			t.ConfigIstio().File(apps.Namespace.Name(), filepath.Join(base, "istio-mtls-vs.yaml")).ApplyOrFail(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        "pilot.ingress" "meshConfig.ingressService, meshConfig.ingressControllerMode, and meshConfig.ingressClass"
        "global.mtls.enabled" "the PeerAuthentication resource"
        "global.mtls.auto" "meshConfig.enableAutoMtls"
        "global.tracer.lightstep.address" "meshConfig.defaultConfig.tracing.lightstep.address"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_tls.go

    			Sni:              tls.Sni,
    		}
    
    		cb.setAutoSniAndAutoSanValidation(c, tls)
    
    		// Use subject alt names specified in service entry if TLS settings does not have subject alt names.
    		if opts.serviceRegistry == provider.External && len(tls.SubjectAltNames) == 0 {
    			tls = tls.DeepCopy()
    			tls.SubjectAltNames = opts.serviceAccounts
    		}
    		if tls.CredentialName != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. docs/logging/README.md

    sasl             (on|off)    set to 'on' to enable SASL authentication
    tls              (on|off)    set to 'on' to enable TLS
    tls_skip_verify  (on|off)    trust server TLS without verification, defaults to "on" (verify)
    client_tls_cert  (path)      path to client certificate for mTLS auth
    client_tls_key   (path)      path to client key for mTLS auth
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/input/gateways.yaml

                ports:
                ## You can add custom gateway ports - google ILB default quota is 5 ports,
                - port: 15011
                  name: grpc-pilot-mtls
                - port: 8060
                  targetPort: 8060
                  name: tcp-citadel-grpc-tls
                # Port 5353 is forwarded to kube-dns
                - port: 5353
                  name: tcp-dns
              overlays:
                - kind: Deployment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top