Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for egressGateways (0.33 sec)

  1. operator/pkg/translate/translate_common.go

    			if c != nil && c.Enabled.GetValue() {
    				enabledComponents = append(enabledComponents, string(name.IngressComponentName))
    				break
    			}
    		}
    		for _, c := range iopSpec.Components.EgressGateways {
    			if c != nil && c.Enabled.GetValue() {
    				enabledComponents = append(enabledComponents, string(name.EgressComponentName))
    				break
    			}
    		}
    	}
    
    	return enabledComponents, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tests/integration/security/file_mounted_certs/main_test.go

    	if cfg == nil {
    		return
    	}
    
    	cfg.ControlPlaneValues = `
    components:
      egressGateways:
      - enabled: true
        name: istio-egressgateway
        k8s:
          overlays:
            - kind: Deployment
              name: istio-egressgateway
              patches:
                - path: spec.template.spec.volumes[100]
                  value: |-
                    name: server-certs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. operator/cmd/mesh/install.go

    			if c.Enabled.GetValue() {
    				enabledComponents = append(enabledComponents, name.UserFacingComponentName(name.IngressComponentName))
    				break
    			}
    		}
    		for _, c := range iop.Spec.Components.EgressGateways {
    			if c.Enabled.GetValue() {
    				enabledComponents = append(enabledComponents, name.UserFacingComponentName(name.EgressComponentName))
    				break
    			}
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. 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)
  5. tests/integration/base.yaml

                memory: 40Mi
        gateways:
          istio-ingressgateway:
            autoscaleEnabled: false
            resources:
              requests:
                cpu: 10m
                memory: 40Mi
          istio-egressgateway:
            autoscaleEnabled: false
            resources:
              requests:
                cpu: 10m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-egress/Chart.yaml

    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for deploying Istio gateways
    keywords:
      - istio
      - egressgateway
      - gateways
    sources:
      - https://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 399 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top