Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for egress (0.56 sec)

  1. tests/integration/security/util/cert/cert.go

    	if err != nil {
    		return nil, err
    	}
    	return b, nil
    }
    
    // CreateCustomEgressSecret creates a k8s secret "cacerts" to store egress gateways CA key and cert.
    func CreateCustomEgressSecret(ctx resource.Context) error {
    	name := "egress-gw-cacerts"
    	systemNs, err := istio.ClaimSystemNamespace(ctx)
    	if err != nil {
    		return err
    	}
    
    	var caKey, certChain, rootCert, fakeRootCert []byte
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. pkg/kubelet/client/kubelet_client.go

    	TLSClientConfig KubeletTLSConfig
    
    	// HTTPTimeout is used by the client to timeout http requests to Kubelet.
    	HTTPTimeout time.Duration
    
    	// Lookup will give us a dialer if the egress selector is configured for it
    	Lookup egressselector.Lookup
    }
    
    type KubeletTLSConfig struct {
    	// Server requires TLS client certificate authentication
    	CertFile string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 01:34:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. tests/integration/security/policy_attachment_only/main_test.go

          numTrustedProxies: 1 # Needed for X-Forwarded-For (See https://istio.io/latest/docs/ops/configuration/traffic-management/network-topologies/)
    `
    			}
    		})).
    		// Create namespaces first. This way, echo can correctly configure egress to all namespaces.
    		SetupParallel(
    			namespace.Setup(&echo1NS, namespace.Config{Prefix: "echo1", Inject: true}),
    			namespace.Setup(&serverNS, namespace.Config{Prefix: "servers", Inject: true}),
    		).
    		SetupParallel(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. tests/integration/pilot/cross_revision_test.go

    			t.ConfigIstio().YAML(apps.Namespace.Name(), `apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: allow-cross-namespaces
    spec:
      workloadSelector:
        labels:
          app: a
      egress:
      - hosts:
        - "*/*"`).ApplyOrFail(t)
    			// create an echo instance in each revisioned namespace, all these echo
    			// instances will be injected with proxies from their respective versions
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/README.md

     -  -  -  - | -  -  -  -  -  -  -  -  -  -  -  -  -  -  |  -  -  -  -
                |                                           v
           +---------+                                  +--------+
       --->| ingress |                                  | egress |--->
           +---------+                                  +--------+
    ```
    
    where the `[*]` represents a routing decision, and all of the boxes except in the top row
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. tests/integration/security/main_test.go

          numTrustedProxies: 1 # Needed for X-Forwarded-For (See https://istio.io/latest/docs/ops/configuration/traffic-management/network-topologies/)
    `
    		})).
    		// Create namespaces first. This way, echo can correctly configure egress to all namespaces.
    		SetupParallel(
    			namespace.Setup(&echo1NS, namespace.Config{Prefix: "echo1", Inject: true}),
    			namespace.Setup(&echo2NS, namespace.Config{Prefix: "echo2", Inject: true}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. tests/testdata/networking/sidecar-ns-scope/configs.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: default-sidecar-scope
      namespace: istio-config
    spec:
      egress:
      - hosts:
        - "./*"
    ---
    # Authentication policy to enable mutual TLS for all services (that have sidecar) in the mesh.
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
      namespace: istio-config
    spec:
      mtls:
        mode: STRICT
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/tls.yaml.golden

      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-terminate-istio-mtls
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/egress.example'
        port:
          name: default
          number: 34000
          protocol: HTTPS
        tls:
          mode: ISTIO_MUTUAL
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. cluster/addons/calico-policy-controller/hostendpoints-crd.yaml

                      matching any of the IPs in the list and apply policy to that. Note:
                      \tWhen using the selector match criteria in an ingress or egress
                      security Policy \tor Profile, Calico converts the selector into
                      a set of IP addresses. For host \tendpoints, the ExpectedIPs field
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  10. pkg/apis/extensions/v1beta1/defaults.go

    	// Default any undefined Protocol fields to TCP.
    	for _, i := range obj.Spec.Ingress {
    		for _, p := range i.Ports {
    			if p.Protocol == nil {
    				proto := v1.ProtocolTCP
    				p.Protocol = &proto
    			}
    		}
    	}
    
    	if len(obj.Spec.PolicyTypes) == 0 {
    		// Any policy that does not specify policyTypes implies at least "Ingress".
    		obj.Spec.PolicyTypes = []extensionsv1beta1.PolicyType{extensionsv1beta1.PolicyTypeIngress}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top