Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for egress (0.16 sec)

  1. tests/integration/telemetry/testdata/istio-mtls-vs.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: direct-cnn-through-egress-gateway
    spec:
      hosts:
      - fake.external.com
      gateways:
      - istio-egressgateway
      - mesh
      tls:
      - match:
        - gateways:
          - mesh
          port: 443
          sniHosts:
          - fake.external.com
        route:
        - destination:
            host: istio-egressgateway.istio-system.svc.cluster.local
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 644 bytes
    - Viewed (0)
  2. pkg/apis/networking/validation/validation_test.go

    			tweakIngress: func(ingress *networking.Ingress) {
    				ingress.Spec.IngressClassName = utilpointer.String("foo")
    				ingress.Annotations = map[string]string{annotationIngressClass: "foo"}
    			},
    			expectedErrs: field.ErrorList{},
    		},
    		"class field and annotation set with different value": {
    			tweakIngress: func(ingress *networking.Ingress) {
    				ingress.Spec.IngressClassName = utilpointer.String("bar")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/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
    - 26.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    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\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  5. pkg/apis/networking/v1/defaults.go

    func SetDefaults_NetworkPolicy(obj *networkingv1.NetworkPolicy) {
    	if len(obj.Spec.PolicyTypes) == 0 {
    		// Any policy that does not specify policyTypes implies at least "Ingress".
    		obj.Spec.PolicyTypes = []networkingv1.PolicyType{networkingv1.PolicyTypeIngress}
    		if len(obj.Spec.Egress) != 0 {
    			obj.Spec.PolicyTypes = append(obj.Spec.PolicyTypes, networkingv1.PolicyTypeEgress)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 10:48:05 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.NetworkPolicy.json

                "ipBlock": {
                  "cidr": "cidrValue",
                  "except": [
                    "exceptValue"
                  ]
                }
              }
            ]
          }
        ],
        "egress": [
          {
            "ports": [
              {
                "protocol": "protocolValue",
                "port": "portValue",
                "endPort": 3
              }
            ],
            "to": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1.NetworkPolicy.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      egress:
      - ports:
        - endPort: 3
          port: portValue
          protocol: protocolValue
        to:
        - ipBlock:
            cidr: cidrValue
            except:
            - exceptValue
          namespaceSelector:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1.NetworkPolicy.json

                "ipBlock": {
                  "cidr": "cidrValue",
                  "except": [
                    "exceptValue"
                  ]
                }
              }
            ]
          }
        ],
        "egress": [
          {
            "ports": [
              {
                "protocol": "protocolValue",
                "port": "portValue",
                "endPort": 3
              }
            ],
            "to": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.NetworkPolicy.json

                "ipBlock": {
                  "cidr": "cidrValue",
                  "except": [
                    "exceptValue"
                  ]
                }
              }
            ]
          }
        ],
        "egress": [
          {
            "ports": [
              {
                "protocol": "protocolValue",
                "port": "portValue",
                "endPort": 3
              }
            ],
            "to": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. tests/integration/security/egress_gateway_origination_test.go

    // routed to egress-gateway service in istio-system namespace and then from egress-gateway to server in server namespace.
    // TLS origination at Gateway happens using DestinationRule with CredentialName reading k8s secret at the gateway proxy.
    func newTLSGateway(t test.Failer, ctx resource.Context, clientNamespace namespace.Instance,
    	to echo.Instances, egressNs string, egressSvc string, egressLabel string,
    ) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top