Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 74 for egressGateways (0.33 sec)

  1. operator/pkg/name/name_test.go

    		name string
    		cn   ComponentName
    		want bool
    	}{
    		{
    			name: "ComponentName is IngressGateways",
    			cn:   IngressComponentName,
    			want: true,
    		},
    		{
    			name: "ComponentName is EgressGateways",
    			cn:   EgressComponentName,
    			want: true,
    		},
    		{
    			name: "ComponentName is others",
    			cn:   CNIComponentName,
    			want: false,
    		},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 14:08:11 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. operator/pkg/validate/validate.go

    		"Hub":                        validateHub,
    		"Tag":                        validateTag,
    		"Revision":                   validateRevision,
    		"Components.IngressGateways": validateGatewayName,
    		"Components.EgressGateways":  validateGatewayName,
    	}
    	// requiredValues lists all the values that must be non-empty.
    	requiredValues = map[string]bool{}
    )
    
    // CheckIstioOperator validates the operator CR.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 12 16:04:15 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. tests/testdata/config/egressgateway.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: istio-egressgateway
      namespace: testns
    spec:
      selector:
        # DO NOT CHANGE THESE LABELS
        # The egressgateway is defined in install/kubernetes/helm/istio/values.yaml
        # with these labels
        istio: egressgateway
      servers:
      - port:
          number: 80 #also declared in gateway's deployment files
          name: http
          protocol: HTTP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 933 bytes
    - Viewed (0)
  4. tests/testdata/config/rule-route-via-egressgateway.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: route-via-egressgateway
      namespace: testns
    spec:
      hosts:
        - egressgateway.bookinfo.com
      gateways:
      # Pinned to both the sidecars (mesh) and egress gateway
      - istio-egressgateway
      - mesh
      http:
        - match:
          - gateways:
            - mesh # from sidecars, route to egress gateway service
          route:
          - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 735 bytes
    - Viewed (0)
  5. tests/testdata/config/se-example-gw.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
     name: istio-egressgateway
     namespace: exampleegressgw
    spec:
     selector:
       istio: egressgateway
     servers:
     - port:
         number: 80
         name: http
         protocol: HTTP
       hosts:
       - "*"
    ---
    #And the associated VirtualService to route from the sidecar to the
    #gateway service (istio-egressgateway.istio-system.svc.cluster.local), as
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 26 13:51:29 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/tunneling/gateway/tcp/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)
  7. tests/integration/telemetry/testdata/istio-mtls-gateway.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: istio-egressgateway
    spec:
      selector:
        istio: egressgateway
      servers:
      - port:
          number: 443
          name: mtls-tcp
          protocol: TLS
        hosts:
        - fake.external.com
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 285 bytes
    - Viewed (0)
  8. tests/integration/telemetry/testdata/istio-mtls-dest-rule.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: egressgateway-for-external-app
    spec:
      host: istio-egressgateway.istio-system.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
        - port:
            number: 443
          tls:
            mode: ISTIO_MUTUAL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 318 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top