Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 206 for endpointSlice (0.16 sec)

  1. pkg/apis/discovery/v1/defaults_test.go

    	protoUDP := v1.ProtocolUDP
    
    	tests := map[string]struct {
    		original *discovery.EndpointSlice
    		expected *discovery.EndpointSlice
    	}{
    		"should set appropriate defaults": {
    			original: &discovery.EndpointSlice{Ports: []discovery.EndpointPort{{
    				Port: utilpointer.Int32(80),
    			}}},
    			expected: &discovery.EndpointSlice{
    				Ports: []discovery.EndpointPort{{
    					Name:     &emptyStr,
    					Protocol: &protoTCP,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:14:37 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. pkg/controller/endpointslicemirroring/config/types.go

    	// mirroringMaxEndpointsPerSubset is the maximum number of endpoints that
    	// will be mirrored to an EndpointSlice for an EndpointSubset.
    	MirroringMaxEndpointsPerSubset int32
    
    	// mirroringEndpointUpdatesBatchPeriod can be used to batch EndpointSlice
    	// updates. All updates triggered by EndpointSlice changes will be delayed
    	// by up to 'mirroringEndpointUpdatesBatchPeriod'. If other addresses in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 06 19:43:33 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  3. pkg/apis/discovery/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.EndpointSlice)(nil), (*discovery.EndpointSlice)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_EndpointSlice_To_discovery_EndpointSlice(a.(*v1.EndpointSlice), b.(*discovery.EndpointSlice), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*discovery.EndpointSlice)(nil), (*v1.EndpointSlice)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 14.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/discovery/v1/generated.proto

      // +listType=atomic
      repeated ForZone forZones = 1;
    }
    
    // EndpointPort represents a Port used by an EndpointSlice
    // +structType=atomic
    message EndpointPort {
      // name represents the name of this port. All ports in an EndpointSlice must have a unique name.
      // If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/discovery/v1beta1/generated.proto

      // +listType=atomic
      repeated ForZone forZones = 1;
    }
    
    // EndpointPort represents a Port used by an EndpointSlice
    message EndpointPort {
      // name represents the name of this port. All ports in an EndpointSlice must have a unique name.
      // If the EndpointSlice is derived from a Kubernetes service, this corresponds to the Service.ports[].name.
      // Name must either be an empty string or pass DNS_LABEL validation:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. pkg/config/schema/kind/resources.gen.go

    	case DNSName:
    		return "DNSName"
    	case DaemonSet:
    		return "DaemonSet"
    	case Deployment:
    		return "Deployment"
    	case DestinationRule:
    		return "DestinationRule"
    	case EndpointSlice:
    		return "EndpointSlice"
    	case Endpoints:
    		return "Endpoints"
    	case EnvoyFilter:
    		return "EnvoyFilter"
    	case GRPCRoute:
    		return "GRPCRoute"
    	case Gateway:
    		return "Gateway"
    	case GatewayClass:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. pkg/apis/discovery/v1beta1/zz_generated.defaults.go

    	scheme.AddTypeDefaultingFunc(&v1beta1.EndpointSlice{}, func(obj interface{}) { SetObjectDefaults_EndpointSlice(obj.(*v1beta1.EndpointSlice)) })
    	scheme.AddTypeDefaultingFunc(&v1beta1.EndpointSliceList{}, func(obj interface{}) { SetObjectDefaults_EndpointSliceList(obj.(*v1beta1.EndpointSliceList)) })
    	return nil
    }
    
    func SetObjectDefaults_EndpointSlice(in *v1beta1.EndpointSlice) {
    	for i := range in.Ports {
    		a := &in.Ports[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/discovery.go

    	endpointslicecontroller "k8s.io/kubernetes/pkg/controller/endpointslice"
    	endpointslicemirroringcontroller "k8s.io/kubernetes/pkg/controller/endpointslicemirroring"
    )
    
    func newEndpointSliceControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.EndpointSliceController,
    		aliases:  []string{"endpointslice"},
    		initFunc: startEndpointSliceController,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // +listType=atomic
      repeated ForZone forZones = 1;
    }
    
    // EndpointPort represents a Port used by an EndpointSlice
    message EndpointPort {
      // name represents the name of this port. All ports in an EndpointSlice must have a unique name.
      // If the EndpointSlice is dervied from a Kubernetes service, this corresponds to the Service.ports[].name.
      // Name must either be an empty string or pass DNS_LABEL validation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. pkg/apis/discovery/types.go

    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // EndpointSlice represents a subset of the endpoints that implement a service.
    // For a given service there may be multiple EndpointSlice objects, selected by
    // labels, which must be joined to produce the full set of endpoints.
    type EndpointSlice struct {
    	metav1.TypeMeta
    	// Standard object's metadata.
    	// +optional
    	metav1.ObjectMeta
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 21:38:06 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top