Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,199 for egress (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/apis/networking/types.go

    	// 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;
    	// policies that contain an egress section are assumed to affect egress, and all policies
    	// (whether or not they contain an ingress section) are assumed to affect ingress.
    	// If you want to write an egress-only policy, you must explicitly specify policyTypes [ "Egress" ].
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/egressselector/config_test.go

    		},
    		{
    			name:           "absent",
    			createFile:     false,
    			contents:       ``,
    			expectedResult: nil,
    			expectedError:  strptr("unable to read egress selector configuration from \"test-egress-selector-config-absent\" [open test-egress-selector-config-absent: no such file or directory]"),
    		},
    		{
    			name:       "v1beta1",
    			createFile: true,
    			contents: `
    apiVersion: apiserver.k8s.io/v1beta1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    type EgressSelectorConfiguration struct {
    	metav1.TypeMeta
    
    	// EgressSelections contains a list of egress selection client configurations
    	EgressSelections []EgressSelection
    }
    
    // EgressSelection provides the configuration for a single egress selection client.
    type EgressSelection struct {
    	// Name is the name of the egress selection.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/networking/v1/generated.proto

      // +optional
      repeated NetworkPolicyEgressRule egress = 3;
    
      // 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;
      // policies that contain an egress section are assumed to affect egress, and all policies
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1/generated.proto

      // +listType=atomic
      repeated NetworkPolicyEgressRule egress = 3;
    
      // 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;
      // policies that contain an egress section are assumed to affect egress, and all policies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	// Currently supported values are "controlplane", "master", "etcd" and "cluster"
    	// The "master" egress selector is deprecated in favor of "controlplane"
    	Name string `json:"name"`
    
    	// connection is the exact information used to configure the egress selection
    	Connection Connection `json:"connection"`
    }
    
    // Connection provides the configuration for a single egress selection client.
    type Connection struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top