Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 103 for peerAuthentication (0.21 sec)

  1. tests/integration/ambient/testdata/global-plaintext.yaml

    # mTLS is disabled without destination rule.
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-off"
    spec:
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 215 bytes
    - Viewed (0)
  2. tests/integration/security/testdata/reachability/global-peer-authn.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "default"
    spec:
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 131 bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-disable-in.yaml

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: disable-mtls
    spec:
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 127 bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    	"istio.io/istio/pilot/test/xds"
    )
    
    // TestPeerAuthenticationPassthrough tests the PeerAuthentication policy applies correctly on the passthrough filter chain,
    // including both global configuration and port level configuration.
    func TestPeerAuthenticationPassthrough(t *testing.T) {
    	paStrict := `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
     name: default
    spec:
     selector:
       matchLabels:
         app: foo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. tests/integration/ambient/testdata/beta-mtls-automtls.yaml

    # No DR is added for this test. enableAutoMtls is expected on by default.
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-automtls"
    spec:
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 247 bytes
    - Viewed (0)
  6. pkg/config/crd/validator_test.go

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
    spec:
      mtls:
        mode: STRICT
    `, nil); err != nil {
    			t.Fatal(err)
    		}
    	})
    	t.Run("invalid", func(t *testing.T) {
    		if err := validator.ValidateCustomResourceYAML(`
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
    spec:
      mtls:
        mode: BAD
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 15:38:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. pkg/config/schema/collections/collections.gen.go

    		ValidateProto: validation.EmptyValidate,
    	}.MustBuild()
    
    	PeerAuthentication = resource.Builder{
    		Identifier: "PeerAuthentication",
    		Group:      "security.istio.io",
    		Kind:       "PeerAuthentication",
    		Plural:     "peerauthentications",
    		Version:    "v1beta1",
    		VersionAliases: []string{
    			"v1",
    		},
    		Proto: "istio.security.v1beta1.PeerAuthentication", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  8. releasenotes/notes/30705.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
      - 28798
    
    releaseNotes:
    - |
      **Fixed** When using PeerAuthentication to turn off mTLS while using multi-network, non-mtls endpoints will be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 30 17:53:03 UTC 2021
    - 290 bytes
    - Viewed (0)
  9. pkg/config/schema/gvk/resources.gen.go

    	Node                           = config.GroupVersionKind{Group: "", Version: "v1", Kind: "Node"}
    	PeerAuthentication             = config.GroupVersionKind{Group: "security.istio.io", Version: "v1beta1", Kind: "PeerAuthentication"}
    	PeerAuthentication_v1          = config.GroupVersionKind{Group: "security.istio.io", Version: "v1", Kind: "PeerAuthentication"}
    	Pod                            = config.GroupVersionKind{Group: "", Version: "v1", Kind: "Pod"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/types.gen.go

    	case gvk.PeerAuthentication:
    		oldRes := &apiistioioapisecurityv1beta1.PeerAuthentication{
    			ObjectMeta: origMeta,
    			Spec:       *(orig.Spec.(*istioioapisecurityv1beta1.PeerAuthentication)),
    		}
    		modRes := &apiistioioapisecurityv1beta1.PeerAuthentication{
    			ObjectMeta: modMeta,
    			Spec:       *(mod.Spec.(*istioioapisecurityv1beta1.PeerAuthentication)),
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
Back to top