Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 347 for mtls (0.05 sec)

  1. internal/config/etcd/help.go

    			Type:        "path",
    		},
    		config.HelpKV{
    			Key:         ClientCert,
    			Description: `client cert for mTLS authentication` + defaultHelpPostfix(ClientCert),
    			Optional:    true,
    			Type:        "path",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         ClientCertKey,
    			Description: `client cert key for mTLS authentication` + defaultHelpPostfix(ClientCertKey),
    			Optional:    true,
    			Type:        "path",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 27 03:11:37 UTC 2022
    - 2.1K 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. pkg/config/crd/validator_test.go

    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
    `, nil); err == nil {
    			t.Fatal("expected error but got none")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 15:38:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. 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)
  5. internal/config/lambda/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: Fri Jun 23 14:45:27 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/config/analysis/analyzers/testdata/destinationrule-mutual-port.yaml

    # No caCertificates when mode is mutual at port level
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-mtls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: MUTUAL
              clientCertificate: /etc/certs/myclientcert.pem
              privateKey: /etc/certs/client_private_key.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 472 bytes
    - Viewed (0)
  9. tests/integration/security/testdata/reachability/workload-peer-authn.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          app: {{ .To.ServiceName }}
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 205 bytes
    - Viewed (0)
  10. tests/integration/ambient/testdata/automtls-partial-sidecar-dr-no-tls.yaml

    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "automtls-partial-sidecar-dr-no-tls"
    spec:
      mtls:
        mode: STRICT
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: "multiversion-route"
      annotations:
        test-suite: "automtls-partial-sidecar-dr-no-tls"
    spec:
      hosts:
      - "multiversion"
      http:
      - name: "vistio-route"
        match:
        - uri:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 996 bytes
    - Viewed (0)
Back to top