Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 390 for mtls (0.06 sec)

  1. pilot/pkg/security/authn/utils/utils_test.go

    		expectedMinTLSVer tls.TlsParameters_TlsProtocol
    	}{
    		{
    			name:              "Default TLS versions",
    			expectedMinTLSVer: tls.TlsParameters_TLSv1_2,
    		},
    		{
    			name:              "Configure minimum TLS version 1.2",
    			minTLSVer:         meshconfig.MeshConfig_TLSConfig_TLSV1_2,
    			expectedMinTLSVer: tls.TlsParameters_TLSv1_2,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 10 20:24:43 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. pkg/test/datasets/validation/dataset/security-v1beta1-PeerAuthentication.yaml

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: valid-peer-authentication
    spec:
      selector:
        matchLabels:
          app: httpbin
          version: v1
      mtls:
        mode: PERMISSIVE
      portLevelMtls:
        8080:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 254 bytes
    - Viewed (0)
  3. releasenotes/notes/34118.yaml

    issue:
      - 33809
    releaseNotes:
      - |
        **Added** Auto mTLS support for workload level peer authentication. You no longer need to configure destination rule when servers are configured with workload level peer authentication policy. This can be disabled by setting ENABLE_AUTO_MTLS_CHECK_POLICIES to "false". 
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 19:02:56 UTC 2021
    - 480 bytes
    - Viewed (0)
  4. tests/integration/security/testdata/reachability/automtls-passthrough.yaml.tmpl

    # Otherwise, the eastwest gateway will be impacted
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: "eastwest-opt-out"
      annotations:
        test-suite: "beta-mtls-on"
    spec:
      exportTo: [.]
      host: "*"
      trafficPolicy:
        loadBalancer:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 530 bytes
    - Viewed (0)
  5. docs/config/README.md

    path_prefix      (path)      namespace prefix to isolate tenants e.g. "customer1/"
    coredns_path     (path)      shared bucket DNS records, default is "/skydns"
    client_cert      (path)      client cert for mTLS authentication
    client_cert_key  (path)      client cert key for mTLS authentication
    comment          (sentence)  optionally add a comment to this setting
    ```
    
    or environment variables
    
    ```
    KEY:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  6. 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)
  7. pkg/config/analysis/analyzers/testdata/destinationrule-mutual-destination.yaml

    # No caCertificates when mode is mutual at destination level
    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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 348 bytes
    - Viewed (0)
  8. releasenotes/notes/debug-auth.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
      **Updated** the Istiod debug interface to be only accessible over localhost or with proper authenciation (mTLS or JWT).
      The recommended way to access the debug interface is through `istioctl experimental internal-debug`, which handles
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 20 14:46:51 UTC 2021
    - 349 bytes
    - Viewed (0)
  9. pilot/pkg/xds/testdata/benchmarks/disabled.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
    - 595 bytes
    - Viewed (0)
  10. tests/integration/ambient/testdata/plaintext-to-permissive.yaml

    metadata:
      name: default
      annotations:
        test-suite: plaintext-to-permissive
    spec:
      mtls:
        mode: PERMISSIVE
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: default
      annotations:
        test-suite: plaintext-to-permissive
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 397 bytes
    - Viewed (0)
Back to top