Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for ISTIO_MUTUAL (0.37 sec)

  1. samples/bookinfo/networking/destination-rule-all-mtls.yaml

    metadata:
      name: productpage
    spec:
      host: productpage
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
      subsets:
      - name: v1
        labels:
          version: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: reviews
    spec:
      host: reviews
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
      subsets:
      - name: v1
        labels:
          version: v1
      - name: v2
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  2. releasenotes/notes/25818.yaml

    # securityNotes is a markdown listing of any changes related to the security of
    # Istio.
    securityNotes:
      - |
        __Source principal validation at Gateway does not work even with ISTIO_MUTUAL TLS mode__:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  3. tests/integration/ambient/testdata/automtls-partial-sidecar-dr-mutual.yaml

      subsets:
      - name: "vistio"
        labels:
          version: "vistio"
        trafficPolicy:
          tls:
            mode: ISTIO_MUTUAL
      - name: "vlegacy"
        labels:
          version: "vlegacy"
        trafficPolicy:
          tls:
            mode: ISTIO_MUTUAL
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. tests/integration/telemetry/testdata/istio-mtls-gateway.yaml

    spec:
      selector:
        istio: egressgateway
      servers:
      - port:
          number: 443
          name: mtls-tcp
          protocol: TLS
        hosts:
        - fake.external.com
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 285 bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/tunneling/gateway/tls/istio-mutual/gateway.tmpl.yaml

          protocol: TLS
        hosts:
        - external.{{ .externalNamespace }}.svc.cluster.local
        tls:
          mode: ISTIO_MUTUAL
      - port:
          number: 443
          name: https
          protocol: TLS
        hosts:
        - external.{{ .externalNamespace }}.svc.cluster.local
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 570 bytes
    - Viewed (0)
  6. releasenotes/notes/istio-mutual-cred-name.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
    - |
      **Fixed** an issue where using `ISTIO_MUTUAL` TLS mode in Gateways while also setting `credentialName` cause mutual TLS to not be configured.
      This configuration is now rejected, as `ISTIO_MUTUAL` is intended to be used without `credentialName` set.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 22 06:41:00 UTC 2022
    - 480 bytes
    - Viewed (0)
  7. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

            number: 80
            name: http
            protocol: HTTP
          hosts:
            - "www.company.com"
        - port:
            number: 443
            name: https
            protocol: HTTPS
          tls:
            mode: ISTIO_MUTUAL
          hosts:
            - "*"
    ---
    
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: route-via-egressgateway
      namespace: {{ .From.NamespaceName }}
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. releasenotes/notes/38495.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 02 16:14:34 UTC 2022
    - 187 bytes
    - Viewed (0)
  9. tests/integration/security/ca_custom_root/secure_naming_test.go

      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
          subjectAltNames:
          - "spiffe://cluster.local/ns/NS/sa/default"
    `
    	correctIdentityDR = `apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "service-b-dr"
    spec:
      host: "b.NS.svc.cluster.local"
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
          subjectAltNames:
          - "spiffe://cluster.local/ns/NS/sa/b"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. tests/integration/security/testdata/authz/mtls.yaml.tmpl

        mode: STRICT
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      host: "{{ .To.ClusterLocalFQDN }}"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 398 bytes
    - Viewed (0)
Back to top