Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for externalSvcTlsPort (0.3 sec)

  1. tests/integration/pilot/testdata/tunneling/destination-rule.tmpl.yaml

            targetPort: {{ .externalSvcTcpPort }}
      - name: external-svc-tls
        trafficPolicy:
          tunnel:
            targetHost: external.{{ .externalNamespace }}
            targetPort: {{ .externalSvcTlsPort }}
    ---
    {{ if .tlsEnabled }}
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: originate-tls-for-outbound-traffic-to-external-forward-proxy
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 20 19:37:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. 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)
  3. tests/integration/pilot/testdata/tunneling/sidecar/virtual-service.tmpl.yaml

            subset: external-svc-tcp
            port:
              number: {{ .forwardProxyPort }}
      tls:
      - match:
        - sniHosts:
          - external.{{ .externalNamespace }}.svc.cluster.local
          port: {{ .externalSvcTlsPort }}
        route:
        - destination:
            host: external-forward-proxy.{{ .externalNamespace }}.svc.cluster.local
            subset: external-svc-tls
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 15 23:31:52 UTC 2022
    - 824 bytes
    - Viewed (0)
  4. 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)
  5. tests/integration/pilot/testdata/tunneling/gateway/tls/passthrough/virtual-service.tmpl.yaml

            subset: originate-tls-for-plain-traffic
            port:
              number: 443
      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)
  6. tests/integration/pilot/tunneling_test.go

    					"forwardProxyPort":              proxyConfig.Port,
    					"tlsEnabled":                    proxyConfig.TLSEnabled,
    					"externalSvcTcpPort":            ports.TCPForHTTP.ServicePort,
    					"externalSvcTlsPort":            ports.HTTPS.ServicePort,
    					"EgressGatewayIstioLabel":       i.Settings().EgressGatewayIstioLabel,
    					"EgressGatewayServiceName":      i.Settings().EgressGatewayServiceName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top