Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,059 for egress (0.13 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tests/integration/telemetry/policy/helper_test.go

    	//    Metric is istio_tcp_connections_closed_total i.e. TCP
    	//
    	// 4. http_egress
    	//    client ) ---HTTP request (Host: some-external-site.com----> Hits listener 0.0.0.0_80 ->
    	//      VS Routing (add Egress Header) --> Egress Gateway --> destination
    	//    Metric is istio_requests_total i.e. HTTP with destination as destination
    	//
    	// 5. TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. helm/minio/templates/ciliumnetworkpolicy.yaml

          release: {{ .Release.Name }}
      ingress:
      - toPorts:
        - ports:
          - port: "{{ .Values.minioAPIPort }}"
            protocol: TCP
          - port: "{{ .Values.minioConsolePort }}"
            protocol: TCP
        {{- if not .Values.networkPolicy.allowExternal }}
        fromEndpoints:
        - matchLabels:
            {{ template "minio.name" . }}-client: "true"
        {{- end }}
      egress:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 07:50:24 UTC 2024
    - 936 bytes
    - Viewed (0)
  10. tests/integration/security/filebased_tls_origination/main_test.go

    components:
      egressGateways:
      - enabled: true
        name: istio-egressgateway
    values:
       gateways:
          istio-egressgateway:
             secretVolumes:
             - name: client-custom-certs
               secretName: egress-gw-cacerts
               mountPath: /etc/certs/custom
    {{- end }}
    `, map[string]bool{"isExternalControlPlane": ctx.AllClusters().IsExternalControlPlane()})
    
    	cfg.GatewayValues = `
    components:
      egressGateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top