Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for egress (0.29 sec)

  1. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml

    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: egress
    spec:
      hosts:
      - "google.com"
      - "*.egress.com"
      ports:
      - number: 80
        name: http
        protocol: HTTP
      - number: 443
        name: tls
        protocol: TLS
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: egress
      namespace: default
    spec:
      parentRefs:
      - kind: ServiceEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml.golden

    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: HTTPRoute/egress.default
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: egress-1-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - '*.egress.com'
      http:
      - name: default.egress.0
        route:
        - destination:
            host: google.com
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. manifests/charts/install-OpenShift.md

    4) `gateways` charts install a load balancer with `ingress` and `egress`.
    
    Ingress secrets and access should be separated from the control plane.
    
    ```console
    helm install -n istio-system istio-ingress manifests/charts/gateways/istio-ingress --set profile=openshift
    ```
    
    Egress secrets and access should be separated from the control plane.
    
    ```console
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:01:31 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    )
    
    // TestEgressGatewayTls brings up an cluster and will ensure that the TLS origination at
    // egress gateway allows secure communication between the egress gateway and external workload.
    // This test brings up an egress gateway to originate TLS connection. The test will ensure that requests
    // are routed securely through the egress gateway and that the TLS origination happens at the gateway.
    func TestEgressGatewayTls(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/serviceentry.status.yaml.golden

        controllerName: istio.io/gateway-controller
        parentRef:
          group: networking.istio.io
          kind: ServiceEntry
          name: egress
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      creationTimestamp: null
      name: egress
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: Route was valid
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. pilot/pkg/model/sidecar_test.go

    			nil,
    		},
    		{
    			"sidecar-with-multiple-egress",
    			configs1,
    			nil,
    			nil,
    			nil,
    			nil,
    		},
    		{
    			"sidecar-with-multiple-egress-with-service",
    			configs1,
    			services1,
    			nil,
    
    			[]*Service{
    				{
    					Hostname: "bar",
    				},
    			},
    			nil,
    		},
    		{
    			"sidecar-with-multiple-egress-with-service-on-same-port",
    			configs1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. manifests/charts/gateway/README.md

    ### Examples
    
    #### Egress Gateway
    
    Deploying a Gateway to be used as an [Egress Gateway](https://istio.io/latest/docs/tasks/traffic-management/egress/egress-gateway/):
    
    ```yaml
    service:
      # Egress gateways do not need an external LoadBalancer IP
      type: ClusterIP
    ```
    
    #### Multi-network/VM Gateway
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. pilot/pkg/model/sidecar.go

    	// Version this sidecar was computed for
    	Version string
    
    	// Set of egress listeners, and their associated services.  A sidecar
    	// scope should have either ingress/egress listeners or both.  For
    	// every proxy workload that maps to a sidecar API object (or the
    	// default object), we will go through every egress listener in the
    	// object and process the Envoy listener or RDS based on the imported
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1/types.go

    	// +optional
    	// +listType=atomic
    	Egress []NetworkPolicyEgressRule `json:"egress,omitempty" protobuf:"bytes,3,rep,name=egress"`
    
    	// policyTypes is a list of rule types that the NetworkPolicy relates to.
    	// Valid options are ["Ingress"], ["Egress"], or ["Ingress", "Egress"].
    	// If this field is not specified, it will default based on the existence of ingress or egress rules;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. pkg/config/validation/validation_test.go

    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{"~/*"},
    				},
    			},
    		}, true, false},
    		{"bad egress host 1", &networking.Sidecar{
    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{"*"},
    				},
    			},
    		}, false, false},
    		{"bad egress host 2", &networking.Sidecar{
    			Egress: []*networking.IstioEgressListener{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top