Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for egress (0.24 sec)

  1. 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)
  2. 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)
  3. pkg/config/analysis/analyzers/testdata/sidecar-default-selector.yaml

      namespace: ns1
    spec:
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: has-selector
      namespace: ns1
    spec:
      workloadSelector: # Since this has a workload selector, it shouldn't conflict with the other Sidecar in the namespace
        labels:
          app: foo
      egress:
      - hosts:
        - "./*"
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 23 13:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tests/integration/telemetry/policy/traffic_allow_any_test.go

    				StatusCode: http.StatusOK,
    				Protocol:   "HTTP/1.1",
    				RequestHeaders: map[string]string{
    					// We inject this header in the VirtualService
    					"Handled-By-Egress-Gateway": "true",
    				},
    			},
    		},
    		{
    			Name:     "HTTP H2 Traffic Egress",
    			PortName: "http",
    			HTTP2:    true,
    			Host:     "some-external-site.com",
    			Expected: Expected{
    				Query: prometheus.Query{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  7. samples/external/README.md

    See [the Egress Task](https://istio.io/docs/tasks/traffic-management/egress/) for
    information on configuring Istio to contact external services.
    
    This directory contains samples showing how to enable pods to contact a few well
    known services.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. tests/testdata/config/rule-route-via-egressgateway.yaml

      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:
              host: istio-egressgateway
            weight: 100
        - match:
          - gateways: # from egress gateway, route to actual external service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 735 bytes
    - Viewed (0)
  9. 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)
  10. samples/external/github.yaml

    # config and certificate) `git clone ******@****.***:istio/api.git`
    
    # HTTP and TLS, the host must be specified
    # See https://istio.io/docs/tasks/traffic-management/egress/
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: github-https
    spec:
      hosts:
      - github.com
      ports:
      - number: 443
        name: https
        protocol: HTTPS
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 28 20:28:21 UTC 2019
    - 1.5K bytes
    - Viewed (0)
Back to top