Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 234 for destinationRule (0.34 sec)

  1. tests/testdata/networking/envoyfilter-without-service/configs.yaml

    spec:
      mtls:
        mode: STRICT
    ---
    # Corresponding destination rule to configure client side to use mutual TLS when talking to
    # any service (host) in the mesh.
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: default
      namespace: istio-config
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    ---
    # Services and configs in ns1 namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. tests/integration/security/testdata/reachability/migration.yaml.tmpl

            subset: "vistio"
      - name: "legacy-by-default"
        route:
        - destination:
            host: "{{ .To.ClusterLocalFQDN }}"
            subset: "vlegacy"
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: "{{ .To.ServiceName }}"
    spec:
      host: "{{ .To.ClusterLocalFQDN }}"
      subsets:
      - name: "vistio"
        labels:
          version: "vistio"
    {{- if ne .TLSMode "" }}
        trafficPolicy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 975 bytes
    - Viewed (0)
  3. tests/integration/ambient/testdata/beta-mtls-off.yaml

    kind: PeerAuthentication
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-off"
    spec:
      mtls:
        mode: DISABLE
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "default"
      annotations:
        test-suite: "beta-mtls-off"
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 382 bytes
    - Viewed (0)
  4. samples/bookinfo/networking/egress-rule-google-apis.yaml

      http:
      - match:
        - port: 80
        route:
        - destination:
            host: www.googleapis.com
            port:
              number: 443
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: originate-tls-for-googleapis
    spec:
      host: www.googleapis.com
      trafficPolicy:
        loadBalancer:
          simple: ROUND_ROBIN
        portLevelSettings:
        - port:
            number: 443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 17:07:25 UTC 2019
    - 885 bytes
    - Viewed (0)
  5. releasenotes/notes/destination-rule-proxyprotocol

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
      **Added** support for outbound traffic Proxy Protocol. By specifying proxyProtocol in a DestinationRule.trafficPolicy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 329 bytes
    - Viewed (0)
  6. releasenotes/notes/33472.yaml

    issue:
      - 33472
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 10 21:51:09 UTC 2021
    - 382 bytes
    - Viewed (0)
  7. tests/integration/ambient/testdata/automtls-partial-sidecar-dr-disable.yaml

            subset: "vistio"
      - name: "legacy-by-default"
        route:
        - destination:
            host: "multiversion"
            subset: "vlegacy"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: "multiversion"
      annotations:
        test-suite: "automtls-partial-dr-disable"
    spec:
      host: "multiversion"
      subsets:
      - name: "vistio"
        labels:
          version: "vistio"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

              weight: 100
          headers:
            request:
              add:
                x-egress-test: "handled-by-egress-gateway"
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: test-egress
      namespace: {{ .From.NamespaceName }}
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. releasenotes/notes/credential-name-support-egress-sidecar.yaml

    kind: feature
    area: traffic-management
    releaseNotes:
       - |
         **Added** the ability to set credentialName based secret configuration
         at sidecars for egress TLS traffic when WorkloadSelector is specified in `DestinationRule`,
         provided the sidecar has permission to list secrets in the namespace where it resides.
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 14 16:56:05 UTC 2022
    - 435 bytes
    - Viewed (0)
  10. pkg/config/analysis/msg/messages.yaml

        code: IST0128
        level: Warning
        description: "No caCertificates are set in DestinationRule, this results in no verification of presented server certificate."
        template: "DestinationRule %s in namespace %s has TLS mode set to %s but no caCertificates are set to validate server identity for host: %s"
        args:
          - name: destinationrule
            type: string
          - name: namespace
            type: string
          - name: mode
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top