Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 102 for egressGateways (0.16 sec)

  1. tests/integration/pilot/testdata/tunneling/gateway/tls/istio-mutual/gateway.tmpl.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: {{ .EgressGatewayServiceName | default "istio-egressgateway" }}
    spec:
      selector:
        istio: {{ .EgressGatewayIstioLabel | default "egressgateway" }}
      servers:
      - port:
          number: 80
          name: http
          protocol: TLS
        hosts:
        - external.{{ .externalNamespace }}.svc.cluster.local
        tls:
          mode: ISTIO_MUTUAL
      - port:
          number: 443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 570 bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/tunneling/gateway/tls/passthrough/virtual-service.tmpl.yaml

    spec:
      hosts:
      - external.{{ .externalNamespace }}.svc.cluster.local
      gateways:
      - {{ .EgressGatewayServiceName | default "istio-egressgateway" }}
      tls:
      - match:
        - gateways:
          - {{ .EgressGatewayServiceName | default "istio-egressgateway" }}
          port: 443
          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/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. tests/integration/pilot/testdata/tunneling/gateway/tcp/gateway.tmpl.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: {{ .EgressGatewayServiceName | default "istio-egressgateway" }}
    spec:
      selector:
        istio: {{ .EgressGatewayIstioLabel | default "egressgateway" }}
      servers:
      - port:
          number: 80
          name: tcp-80
          protocol: TCP
        hosts:
        - external.{{ .externalNamespace }}.svc.cluster.local
      - port:
          number: 443
          name: tcp-443
          protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 506 bytes
    - Viewed (0)
  5. operator/pkg/translate/translate.go

    		setYAMLNodeByMapPath(iopt, util.PathFromString("gateways.istio-egressgateway.name"), gwSpec.Name)
    		if len(gwSpec.Label) != 0 {
    			setYAMLNodeByMapPath(iopt, util.PathFromString("gateways.istio-egressgateway.labels"), gwSpec.Label)
    		}
    		if k8s != nil && k8s.Service != nil && k8s.Service.Ports != nil {
    			setYAMLNodeByMapPath(iopt, util.PathFromString("gateways.istio-egressgateway.ports"), k8s.Service.Ports)
    		}
    	}
    	return yaml.Marshal(iopt)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/profile-dump/output/list_path.yaml

    - mountPath: /etc/istio/egressgateway-certs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 73 bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/tunneling/gateway/tls/istio-mutual/virtual-service.tmpl.yaml

      gateways:
      - mesh
      tcp:
      - match:
        - port: {{ .externalSvcTcpPort }}
        route:
        - destination:
            host: {{ .EgressGatewayServiceName | default "istio-egressgateway" }}.{{ .EgressGatewayServiceNamespace | default "istio-system" }}.svc.cluster.local
            port:
              number: 80
      tls:
      - match:
        - port: {{ .externalSvcTlsPort }}
          sniHosts:
    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/telemetry/policy/helper_test.go

    kind: Gateway
    metadata:
      name: istio-egressgateway
    spec:
      selector:
        istio: egressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "some-external-site.com"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: route-via-egressgateway
    spec:
      hosts:
        - "some-external-site.com"
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/tunneling/gateway/tls/passthrough/gateway.tmpl.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: {{ .EgressGatewayServiceName | default "istio-egressgateway" }}
    spec:
      selector:
        istio: {{ .EgressGatewayIstioLabel | default "egressgateway" }} 
      servers:
      - port:
          number: 443
          name: tls
          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
    - 401 bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-egress/values.yaml

          ipFamilyPolicy: ""
          ipFamilies: []
    
          secretVolumes:
          - name: egressgateway-certs
            secretName: istio-egressgateway-certs
            mountPath: /etc/istio/egressgateway-certs
          - name: egressgateway-ca-certs
            secretName: istio-egressgateway-ca-certs
            mountPath: /etc/istio/egressgateway-ca-certs
    
          configVolumes: []
          additionalContainers: []
    
          serviceAccount:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top