Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for egressGateways (0.17 sec)

  1. operator/cmd/mesh/testdata/profile-dump/input/list_path.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      namespace: istio-system
    spec:
      values:
        gateways:
          istio-egressgateway:
            secretVolumes:
              - mountPath: /etc/istio/egressgateway-certs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 20 11:44:25 UTC 2022
    - 266 bytes
    - Viewed (0)
  2. operator/pkg/tpath/tree_test.go

    			value: "istio-egressgateway-certs",
    		},
    		{
    			path:  "values.gateways.istio-egressgateway.secretVolumes[0].mountPath",
    			value: "/etc/istio/egressgateway-certs",
    		},
    		{
    			path:  "values.gateways.istio-egressgateway.secretVolumes[1].name",
    			value: "egressgateway-ca-certs",
    		},
    		{
    			path:  "values.gateways.istio-egressgateway.secretVolumes[1].secretName",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  3. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: {{ .EgressGatewayIstioLabel | default "egressgateway" }}
      namespace: {{ .EgressGatewayServiceNamespace | default .SystemNamespace.Name }}
    spec:
      selector:
        matchLabels:
          app: {{ .EgressGatewayServiceName | default "istio-egressgateway" }}
      rules:
        - to: # only allow /allow for company.com
            - operation:
                paths: [ "/allow" ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/deprecation.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: istio-multicluster-egressgateway
      namespace: istio-system
    spec:
       # workloadLabels is deprecated
       workloadLabels:
         istio: egressgateway
       # filters is deprecated
       filters:
       - listenerMatch:
           portNumber: 15443
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: productpage
      namespace: foo
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/profile-dump/output/list_path.txt

    [0].mountPath="/etc/istio/egressgateway-certs"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 78 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top