Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for egress (0.18 sec)

  1. prow/config/calico.yaml

                      or to egress, or to both.  When not explicitly specified (and so
                      the value on creation is empty or nil), Calico defaults Types according
                      to what Ingress and Egress rules are present in the policy.  The
                      default is: \n - [ PolicyTypeIngress ], if there are no Egress rules
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	// admission plugin initializers to Admission.ApplyTo.
    	ExtraAdmissionInitializers func(c *server.RecommendedConfig) ([]admission.PluginInitializer, error)
    	Admission                  *AdmissionOptions
    	// API Server Egress Selector is used to control outbound traffic from the API Server
    	EgressSelector *EgressSelectorOptions
    	// Traces contains options to control distributed request tracing.
    	Traces *TracingOptions
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pkg/apis/extensions/v1beta1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1beta1.Ingress)(nil), (*networking.Ingress)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta1_Ingress_To_networking_Ingress(a.(*v1beta1.Ingress), b.(*networking.Ingress), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*networking.Ingress)(nil), (*v1beta1.Ingress)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 95.7K bytes
    - Viewed (0)
  4. pkg/apis/networking/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: Tue Oct 31 21:05:58 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-kubeapiserver.sh

      local default_konnectivity_socket_vol=""
      local default_konnectivity_socket_mnt=""
      if [[ "${PREPARE_KONNECTIVITY_SERVICE:-false}" == "true" ]]; then
        # Create the EgressSelectorConfiguration yaml file to control the Egress Selector.
        csc_config_mount="{\"name\": \"cscconfigmount\",\"mountPath\": \"/etc/srv/kubernetes/egress_selector_configuration.yaml\", \"readOnly\": false},"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. README.md

    layer over the underlying cluster management platform, such as Kubernetes.
    
    Istio is composed of these components:
    
    - **Envoy** - Sidecar proxies per microservice to handle ingress/egress traffic
       between services in the cluster and from a service to external
       services. The proxies form a _secure microservice mesh_ providing a rich
       set of functions like discovery, rich layer-7 routing, circuit breakers,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. pilot/pkg/security/model/authentication.go

    	}
    }
    
    // ApplyCustomSDSToClientCommonTLSContext applies the customized sds to CommonTlsContext
    // Used for building upstream TLS context for egress gateway's TLS/mTLS origination
    func ApplyCustomSDSToClientCommonTLSContext(tlsContext *tls.CommonTlsContext,
    	tlsOpts *networking.ClientTLSSettings, credentialSocketExist bool,
    ) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. pkg/apis/networking/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.Ingress)(nil), (*networking.Ingress)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_Ingress_To_networking_Ingress(a.(*v1.Ingress), b.(*networking.Ingress), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*networking.Ingress)(nil), (*v1.Ingress)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  9. tests/integration/security/util/framework.go

    		return vmCfg
    	}()
    
    	externalSvc := echo.Config{
    		Service: ExternalSvc,
    		// Namespace: appsNamespace,
    		Ports: []echo.Port{
    			{
    				// Plain HTTP port only used to route request to egress gateway
    				Name:         "http",
    				Protocol:     protocol.HTTP,
    				ServicePort:  80,
    				WorkloadPort: 8080,
    			},
    			{
    				// HTTPS port
    				Name:         "https",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. operator/pkg/component/component.go

    				Options:       opts,
    				ComponentName: cn,
    				ResourceName:  resourceName,
    				index:         index,
    				componentSpec: spec,
    			},
    		},
    	}
    }
    
    // EgressComponent is the egress gateway component.
    type EgressComponent struct {
    	*IstioComponentBase
    }
    
    // NewEgressComponent creates a new IngressComponent and returns a pointer to it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top