Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for PERMISSIVE (0.21 sec)

  1. architecture/ambient/peer-authentication.md

    ```yaml
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: strict-and-permissive-mtls
    spec:
      selector:
        matchLabels:
          app: a
      mtls:
        mode: STRICT
      portLevelMtls:
        9090:
          mode: PERMISSIVE
    ```
    
    will be translated into this `Authorization`:
    
    ```yaml
    action: DENY
    groups:
    - rules:
      - matches:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. tests/integration/security/testdata/authz/plaintext.yaml.tmpl

    # This configures all services within the namespace to use mTLS with permissive mode (allowing plaintext).
    
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: ns-default
      namespace: {{ .To.NamespaceName }}
    spec:
      mtls:
        mode: PERMISSIVE
    
    ---
    # This configures requests to any service in the namespace to use mTLS.
    
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. pkg/test/datasets/validation/dataset/security-v1-PeerAuthentication.yaml

    apiVersion: security.istio.io/v1
    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: Mon Apr 01 14:30:12 UTC 2024
    - 249 bytes
    - Viewed (0)
  4. releasenotes/notes/tls-fc.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
    - 29538
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 21 00:43:39 UTC 2020
    - 209 bytes
    - Viewed (0)
  5. releasenotes/notes/passthrough-tls.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue:
    - 31297
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 25 12:04:03 UTC 2021
    - 231 bytes
    - Viewed (0)
  6. tests/testdata/config/authn.yaml

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
      namespace: default
    spec:
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 11 00:53:03 UTC 2020
    - 145 bytes
    - Viewed (0)
  7. 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)
  8. releasenotes/notes/protocol-detection-timeout.yaml

    releaseNotes:
    - |
      **Removed** the protocol detection timeout by default, reducing traffic failures during slow connections.
    upgradeNotes:
    - title: Protocol Detection Timeout Changes
      content: |
        In order to support permissive mTLS traffic as well as [automatic protocol detection](istio.io/latest/docs/ops/configuration/traffic-management/protocol-selection/#automatic-protocol-selection),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 21 00:53:45 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  9. pilot/pkg/security/authn/utils/utils.go

    		if features.DisableMxALPN {
    			ctx.CommonTlsContext.AlpnProtocols = util.ALPNDownstream
    		} else {
    			ctx.CommonTlsContext.AlpnProtocols = util.ALPNDownstreamWithMxc
    		}
    	} else {
    		// Note that in the PERMISSIVE mode, we match filter chain on "istio" ALPN,
    		// which is used to differentiate between service mesh and legacy traffic.
    		//
    		// Client sidecar outbound cluster's TLSContext.ALPN must include "istio".
    		//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorJdkVersionsIntegrationTest.groovy

            where:
            // We can't test against Java 6 since the gradleApi dependencies are compiled to java 8.
            // However, the java 7 compiler is permissive enough to compile against the java 8 API classes.
            version << [JavaVersion.VERSION_1_7]
        }
    
        def "succeeds when running with compatible java version"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top