Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for egressGateways (0.25 sec)

  1. pkg/test/framework/components/istio/config.go

    	// DefaultEgressGatewayLabel is the default Istio label for the egress gateway.
    	DefaultEgressGatewayIstioLabel = "egressgateway"
    
    	// DefaultEgressGatewayServiceName is the default service name for the egress gateway.
    	DefaultEgressGatewayServiceName = "istio-egressgateway"
    )
    
    var (
    	helmValues      string
    	operatorOptions string
    
    	settingsFromCommandline = &Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

    y","namespace":"istio-system"},"gateways":{"istio-egressgateway":{"autoscaleEnabled":true,"enabled":false,"namespace":"istio-system","ports":[{"name":"http2","port":80},{"name":"https","port":443},{"name":"tls","port":15443,"targetPort":15443}],"secretVolumes":[{"mountPath":"/etc/istio/egressgateway-certs","name":"egressgateway-certs","secretName":"istio-egressgateway-certs"},{"mountPath":"/etc/istio/egressgateway-ca-certs","name":"egressgateway-ca-certs","secretName":"istio-egressgateway-ca-cer...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

    y","namespace":"istio-system"},"gateways":{"istio-egressgateway":{"autoscaleEnabled":true,"enabled":false,"namespace":"istio-system","ports":[{"name":"http2","port":80},{"name":"https","port":443},{"name":"tls","port":15443,"targetPort":15443}],"secretVolumes":[{"mountPath":"/etc/istio/egressgateway-certs","name":"egressgateway-certs","secretName":"istio-egressgateway-certs"},{"mountPath":"/etc/istio/egressgateway-ca-certs","name":"egressgateway-ca-certs","secretName":"istio-egressgateway-ca-cer...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

    y","namespace":"istio-system"},"gateways":{"istio-egressgateway":{"autoscaleEnabled":true,"enabled":false,"namespace":"istio-system","ports":[{"name":"http2","port":80},{"name":"https","port":443},{"name":"tls","port":15443,"targetPort":15443}],"secretVolumes":[{"mountPath":"/etc/istio/egressgateway-certs","name":"egressgateway-certs","secretName":"istio-egressgateway-certs"},{"mountPath":"/etc/istio/egressgateway-ca-certs","name":"egressgateway-ca-certs","secretName":"istio-egressgateway-ca-cer...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    `
    	VirtualService = `
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: route-via-egressgateway-filebased
    spec:
      hosts:
        - external-service.{{.ServerNamespace}}.svc.cluster.local
      gateways:
        - istio-egressgateway-filebased
        - mesh
      http:
        - match:
            - gateways:
                - mesh # from sidecars, route to egress gateway service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. tests/integration/security/egress_gateway_origination_test.go

    `
    	vs := `
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: route-via-egressgateway-sds
    spec:
      hosts:
        - {{ .to.Config.ClusterLocalFQDN }}
      gateways:
        - istio-egressgateway-sds
        - mesh
      http:
        - match:
            - gateways:
                - mesh # from sidecars, route to egress gateway service
              port: 80
          route:
            - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. operator/cmd/mesh/manifest-generate_test.go

    	}
    	egress15Selector := map[string]string{
    		"app":   "istio-egressgateway",
    		"istio": "egressgateway",
    	}
    
    	// Validate references within the same deployment
    	validateReferentialIntegrity(t, objs, "istiod", istiod15Selector)
    	validateReferentialIntegrity(t, objs, "istio-ingressgateway", ingress15Selector)
    	validateReferentialIntegrity(t, objs, "istio-egressgateway", egress15Selector)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  8. tests/integration/telemetry/api/stats_test.go

    	ns := apps.Namespace
    	labels := map[string]string{
    		"request_protocol":               "tcp",
    		"destination_service_name":       "istio-egressgateway",
    		"destination_canonical_revision": "latest",
    		"destination_canonical_service":  "istio-egressgateway",
    		"destination_app":                "istio-egressgateway",
    		// Does not play well with canonical revision which defaults to "latest".
    		// "destination_version":            "unknown",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. operator/pkg/translate/translate_value.go

    	specialComponentPath = map[string]bool{
    		"gateways":                      true,
    		"gateways.istio-ingressgateway": true,
    		"gateways.istio-egressgateway":  true,
    	}
    
    	skipTranslate = map[name.ComponentName]bool{
    		name.IstioBaseComponentName:          true,
    		name.IstioOperatorComponentName:      true,
    		name.IstioOperatorCustomResourceName: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. operator/pkg/compare/compare_test.go

    kind: HorizontalPodAutoscaler
    metadata:
      name: istio-ingressgateway
      namespace: istio-system
      labels:
        app: istio-egressgateway
        release: istio`,
    			want: `metadata:
      labels:
        app: istio-ingressgateway -> istio-egressgateway
    `,
    		},
    		{
    			desc: "one map value changed, order changed",
    			a: `apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
Back to top