Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for SNIHosts (0.1 sec)

  1. pilot/pkg/config/kube/gateway/testdata/eastwest.yaml.golden

      namespace: istio-system
    spec:
      gateways:
      - istio-system/eastwestgateway-istio-autogenerated-k8s-gateway-istiod-grpc
      hosts:
      - '*'
      tls:
      - match:
        - sniHosts:
          - '*'
        route:
        - destination:
            host: istiod.istio-system.svc.domain.suffix
            port:
              number: 15012
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. tests/testdata/config/se-example.yaml

      tls:
      - match:
        - port: 443
          sniHosts:
          - api.dropboxapi.com
        route:
        - destination:
            host: api.dropboxapi.com
      - match:
        - port: 443
          sniHosts:
          - www.googleapis.com
        route:
        - destination:
            host: www.googleapis.com
      - match:
        - port: 443
          sniHosts:
          - api.facebook.com
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jun 27 15:20:03 UTC 2020
    - 5.3K bytes
    - Viewed (0)
  3. tests/integration/telemetry/testdata/istio-mtls-vs.yaml

    metadata:
      name: direct-cnn-through-egress-gateway
    spec:
      hosts:
      - fake.external.com
      gateways:
      - istio-egressgateway
      - mesh
      tls:
      - match:
        - gateways:
          - mesh
          port: 443
          sniHosts:
          - fake.external.com
        route:
        - destination:
            host: istio-egressgateway.istio-system.svc.cluster.local
            port:
              number: 443
          weight: 100
      tcp:
      - match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 644 bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/tls.yaml.golden

      namespace: default
    spec:
      gateways:
      - istio-system/gateway-istio-autogenerated-k8s-gateway-passthrough
      hosts:
      - foo.com
      tls:
      - match:
        - sniHosts:
          - foo.com
        route:
        - destination:
            host: httpbin-foo.default.svc.domain.suffix
            port:
              number: 443
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml.golden

      creationTimestamp: null
      name: egress-tls-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - google.com
      tls:
      - match:
        - sniHosts:
          - google.com
        route:
        - destination:
            host: google.com
            port:
              number: 443
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/tunneling/gateway/tls/istio-mutual/virtual-service.tmpl.yaml

            port:
              number: 80
      tls:
      - match:
        - port: {{ .externalSvcTlsPort }}
          sniHosts:
          - external.{{ .externalNamespace }}.svc.cluster.local
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/tunneling/gateway/tcp/virtual-service.tmpl.yaml

            port:
              number: 80
      tls:
      - match:
        - port: {{ .externalSvcTlsPort }}
          sniHosts:
          - external.{{ .externalNamespace }}.svc.cluster.local
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. tests/testdata/config/none.yaml

      namespace: none
    spec:
      hosts:
      - www1.googleapis.com
      - api1.facebook.com
      tls:
      - match:
        - port: 2443
          sniHosts:
          - www1.googleapis.com
        route:
        - destination:
            host: www1.googleapis.com
      - match:
        - port: 2443
          sniHosts:
          - api1.facebook.com
        route:
        - destination:
            host: api1.facebook.com
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/serviceentry_simulation_test.go

        protocol: TCP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: vs1
    spec:
      hosts:
      - blah.somedomain
      tls:
      - match:
        - port: 9999
          sniHosts:
          - blah.somedomain
        route:
        - destination:
            host: blah.somedomain
            port:
              number: 9999`
    
    func TestServiceEntry(t *testing.T) {
    	cases := []simulationTest{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:06 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top