Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of about 10,000 for egress (0.19 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/zz_generated.deepcopy.go

    	*out = *in
    	in.PodSelector.DeepCopyInto(&out.PodSelector)
    	if in.Ingress != nil {
    		in, out := &in.Ingress, &out.Ingress
    		*out = make([]NetworkPolicyIngressRule, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.Egress != nil {
    		in, out := &in.Egress, &out.Egress
    		*out = make([]NetworkPolicyEgressRule, len(*in))
    		for i := range *in {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1/generated.pb.go

    }
    
    var xxx_messageInfo_IPBlock proto.InternalMessageInfo
    
    func (m *Ingress) Reset()      { *m = Ingress{} }
    func (*Ingress) ProtoMessage() {}
    func (*Ingress) Descriptor() ([]byte, []int) {
    	return fileDescriptor_2c41434372fec1d7, []int{3}
    }
    func (m *Ingress) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *Ingress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 158.2K bytes
    - Viewed (0)
  3. cluster/gce/config-default.sh

    # Optional: Whether to do the setup for the konnectivity service
    # Includes setting up kubeconfig, tokens, egress files, and firewall rules
    export PREPARE_KONNECTIVITY_SERVICE="${KUBE_ENABLE_KONNECTIVITY_SERVICE:-true}"
    # Optional: Whether to use konnectivity network proxy for all egress from apiserver.
    export EGRESS_VIA_KONNECTIVITY="${KUBE_ENABLE_KONNECTIVITY_SERVICE:-true}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector_test.go

    				},
    			},
    			expectedError: nil,
    		},
    	}
    
    	for _, tc := range testcases {
    		t.Run(tc.name, func(t *testing.T) {
    			// Setup the various pieces such as the fake dialer prior to initializing the egress selector.
    			// Go doesn't allow function pointer comparison, nor does its reflect package
    			// So overriding the default dialer to detect if it is returned.
    			fake := &fakeEgressSelection{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 26 22:41:29 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. samples/ambient-argo/README.md

    set.yaml:9](./istio/control-plane-appset.yaml), at .spec.generators[0].list.elements[*].revision).
    
    Tags also identify control planes, but unlike revisions, tags are mutable references to revisions.  When an Istio Gateway (waypoint, ingress, or egress) references a particular tag, a dataplane is created using the version of the tag reference, and connects to the control plane indicated by the tag.  In this way, gateways can be organized into channels, or distinct groups which will be upgraded...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/values.yaml

        # * implies these objects are visible to all namespaces, enabling any sidecar to talk to any other sidecar.
        # . implies these objects are visible to only to sidecars in the same namespace, or if imported as a Sidecar.egress.host
        defaultConfigVisibilitySettings: []
    
        # Default node selector to be applied to all deployments so that all pods can be
        # constrained to run a particular nodes. Each component can overwrite these default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/options/options.go

    	s.Authentication.AddFlags(fss.FlagSet("authentication"))
    	s.Authorization.AddFlags(fss.FlagSet("authorization"))
    	s.APIEnablement.AddFlags(fss.FlagSet("API enablement"))
    	s.EgressSelector.AddFlags(fss.FlagSet("egress selector"))
    	s.Admission.AddFlags(fss.FlagSet("admission"))
    	s.Metrics.AddFlags(fss.FlagSet("metrics"))
    	logsapi.AddFlags(s.Logs, fss.FlagSet("logs"))
    	s.Traces.AddFlags(fss.FlagSet("traces"))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    	if values.GetGateways().GetIstioIngressgateway().GetAutoscaleEnabled().GetValue() {
    		validateGateways(spec.GetComponents().GetIngressGateways(), "ingress")
    	}
    
    	if values.GetGateways().GetIstioEgressgateway().GetAutoscaleEnabled().GetValue() {
    		validateGateways(spec.GetComponents().GetEgressGateways(), "egress")
    	}
    
    	return
    }
    
    // CheckServicePorts validates Service ports. Specifically, this currently
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/kube.go

    		i.ingress[c.Name()] = map[string]ingress.Instance{}
    	}
    	if _, ok := i.ingress[c.Name()][labelSelector]; !ok {
    		ingr := newIngress(i.ctx, ingressConfig{
    			Cluster:       c,
    			Service:       service,
    			LabelSelector: labelSelector,
    		})
    		if closer, ok := ingr.(io.Closer); ok {
    			i.ctx.Cleanup(func() { _ = closer.Close() })
    		}
    		i.ingress[c.Name()][labelSelector] = ingr
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. architecture/environments/operator.md

    | Feature | Components |
    |---------|------------|
    CRDs, and other cluster wide configs | Base
    Traffic Management | Pilot
    Security | Pilot
    Configuration management | Pilot
    AutoInjection | Pilot
    Gateways | Ingress gateway
    Gateways | Egress gateway
    Policy | Policy (deprecated)
    Telemetry | Telemetry (deprecated)
    
    Features and components are defined in the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top