Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for egress (0.14 sec)

  1. tests/integration/pilot/testdata/tunneling/gateway/tls/istio-mutual/mtls.tmpl.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: originate-mtls-for-egress-gateway
    spec:
      host: {{ .EgressGatewayServiceName | default "istio-egressgateway" }}.{{ .EgressGatewayServiceNamespace | default "istio-system" }}.svc.cluster.local
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 387 bytes
    - Viewed (0)
  2. samples/external/pypi.yaml

    # After applying this file, Istio-enabled pods will be able to execute
    # `pip search istio`.
    
    # 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: python-https
    spec:
      hosts:
      - pypi.python.org
      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
    - 962 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/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: Mon May 01 18:19:25 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/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: Fri Dec 15 04:12:07 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.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. 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)
  9. 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)
  10. 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)
Back to top