Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 390 for mtls (0.17 sec)

  1. pkg/config/analysis/analyzers/testdata/destinationrule-compound-simple-mutual.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-mtls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: MUTUAL
          clientCertificate: /etc/certs/myclientcert.pem
          privateKey: /etc/certs/client_private_key.pem
        portLevelSettings:
        - port:
            number: 443
          tls:
            mode: SIMPLE
            clientCertificate: /etc/certs/myclientcert.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 599 bytes
    - Viewed (0)
  2. 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)
  3. pilot/pkg/features/security.go

    var (
    	// SkipValidateTrustDomain tells the server proxy to not to check the peer's trust domain when
    	// mTLS is enabled in authentication policy.
    	SkipValidateTrustDomain = env.Register(
    		"PILOT_SKIP_VALIDATE_TRUST_DOMAIN",
    		false,
    		"Skip validating the peer is from the same trust domain when mTLS is enabled in authentication policy").Get()
    
    	XDSAuth = env.Register("XDS_AUTH", true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 13 03:50:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. tests/integration/security/testdata/reachability/workload-peer-authn-port-override.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          app: {{ .To.ServiceName }}
      mtls:
        mode: {{ .MTLSMode }}
      portLevelMtls:
        {{ (.To.PortForName `http`).WorkloadPort }}:
          mode: {{ .MTLSModeOverride }}
        {{ (.To.PortForName `http2`).WorkloadPort }}:
          mode: {{ .MTLSModeOverride }}
        {{ (.To.PortForName `https`).WorkloadPort }}:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 648 bytes
    - Viewed (0)
  5. releasenotes/notes/28742.yaml

    area: security
    
    issue:
        - https://github.com/istio/istio/issues/28742
    
    releaseNotes:
    - |
      **Added** Configuring Envoy to fetch the Jwks by it self. This should be enabled if the JwksUri is a mesh cluster URL for mTLS and other benefits like retries, jws caching etc. 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 11 21:29:16 UTC 2021
    - 472 bytes
    - Viewed (0)
  6. internal/config/notify/help.go

    		},
    		config.HelpKV{
    			Key:         target.WebhookClientCert,
    			Description: "client cert for Webhook mTLS auth",
    			Optional:    true,
    			Type:        "string",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         target.WebhookClientKey,
    			Description: "client cert key for Webhook mTLS auth",
    			Optional:    true,
    			Type:        "string",
    			Sensitive:   true,
    		},
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  7. pilot/pkg/xds/endpoints/mtls_checker.go

    	if tp == nil {
    		return nil
    	}
    	var mode *networkingapi.ClientTLSSettings_TLSmode
    	if tp.Tls != nil {
    		mode = &tp.Tls.Mode
    	}
    	// if there is a port-level setting matching this cluster
    	for _, portSettings := range tp.GetPortLevelSettings() {
    		if int(portSettings.GetPort().GetNumber()) == port && portSettings.Tls != nil {
    			mode = &portSettings.Tls.Mode
    			break
    		}
    	}
    	return mode
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. pilot/pkg/xds/testdata/benchmarks/strict.yaml

        name: auto
        protocol: ""
      resolution: STATIC
      endpoints:
      - address: 1.1.1.1
    ---
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
    spec:
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 29 02:10:48 UTC 2023
    - 594 bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/destinationrule-compound-mutual-simple.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-mtls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: SIMPLE
          clientCertificate: /etc/certs/myclientcert.pem
          privateKey: /etc/certs/client_private_key.pem
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: MUTUAL
              clientCertificate: /etc/certs/myclientcert.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 638 bytes
    - Viewed (0)
  10. 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)
Back to top