Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for EgressGatewayIstioLabel (0.27 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/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)
  3. pkg/test/framework/components/istio/flags.go

    		Should only be set when istio.test.kube.deploy=false`)
    	flag.StringVar(&settingsFromCommandline.EgressGatewayIstioLabel, "istio.test.kube.egressGatewayIstioLabel",
    		settingsFromCommandline.EgressGatewayIstioLabel,
    		`Specifies the istio label of the egressgateway to search for when running tests in a preinstalled istio installation.
    		Should only be set when istio.test.kube.deploy=false`)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.1K 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. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

          jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: {{ .EgressGatewayIstioLabel | default "egressgateway" }}
      namespace: {{ .EgressGatewayServiceNamespace | default .SystemNamespace.Name }}
    spec:
      selector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/config.go

    	// This field should only be set when DeployIstio is false
    	EgressGatewayServiceNamespace string
    
    	// EgressGatewayIstioLabel allows overriding the selector of the egressgateway service (defaults to istio=egressgateway)
    	// This field should only be set when DeployIstio is false
    	EgressGatewayIstioLabel string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. tests/integration/pilot/tunneling_test.go

    					"tlsEnabled":                    proxyConfig.TLSEnabled,
    					"externalSvcTcpPort":            ports.TCPForHTTP.ServicePort,
    					"externalSvcTlsPort":            ports.HTTPS.ServicePort,
    					"EgressGatewayIstioLabel":       i.Settings().EgressGatewayIstioLabel,
    					"EgressGatewayServiceName":      i.Settings().EgressGatewayServiceName,
    					"EgressGatewayServiceNamespace": i.Settings().EgressGatewayServiceNamespace,
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. tests/integration/security/egress_gateway_origination_test.go

    					useGateway:      false,
    				},
    			}
    
    			newTLSGateway(t, t, apps.Ns1.Namespace, apps.External.All, i.Settings().EgressGatewayServiceNamespace,
    				i.Settings().EgressGatewayServiceName, i.Settings().EgressGatewayIstioLabel)
    
    			for _, tc := range testCases {
    				t.NewSubTest(tc.name).Run(func(t framework.TestContext) {
    					newTLSGatewayDestinationRule(t, apps.External.All, "SIMPLE", tc.credentialToUse)
    					newTLSGatewayTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    			createGateway(t, t, appNS, serviceNS, inst.Settings().EgressGatewayServiceNamespace,
    				inst.Settings().EgressGatewayServiceName, inst.Settings().EgressGatewayIstioLabel)
    
    			if err := WaitUntilNotCallable(internalClient[0], externalService[0]); err != nil {
    				t.Fatalf("failed to apply sidecar, %v", err)
    			}
    
    			// Set up Host Name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. tests/integration/security/authz_test.go

    					// The namespaces for each resource are specified in the file. Use "" as the ns to apply to.
    					param.Namespace.String():        "",
    					"EgressGatewayIstioLabel":       i.Settings().EgressGatewayIstioLabel,
    					"EgressGatewayServiceName":      i.Settings().EgressGatewayServiceName,
    					"EgressGatewayServiceNamespace": i.Settings().EgressGatewayServiceNamespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top