Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for EndpointSubset (0.37 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.EndpointSubset)(nil), (*core.EndpointSubset)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_EndpointSubset_To_core_EndpointSubset(a.(*v1.EndpointSubset), b.(*core.EndpointSubset), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.EndpointSubset)(nil), (*v1.EndpointSubset)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      //
      // * Other protocols should use implementation-defined prefixed names such as
      // mycompany.com/my-custom-protocol.
      // +optional
      optional string appProtocol = 4;
    }
    
    // EndpointSubset is a group of addresses with a common set of ports. The
    // expanded set of endpoints is the Cartesian product of Addresses x Ports.
    // For example, given:
    //
    // 	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    //	   },
    //	]
    type Endpoints struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ObjectMeta
    
    	// The set of all endpoints is the union of all subsets.
    	Subsets []EndpointSubset
    }
    
    // EndpointSubset is a group of addresses with a common set of ports.  The
    // expanded set of endpoints is the Cartesian product of Addresses x Ports.
    // For example, given:
    //
    //	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      //
      // * Other protocols should use implementation-defined prefixed names such as
      // mycompany.com/my-custom-protocol.
      // +optional
      optional string appProtocol = 4;
    }
    
    // EndpointSubset is a group of addresses with a common set of ports. The
    // expanded set of endpoints is the Cartesian product of Addresses x Ports.
    // For example, given:
    //
    // 	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// NotReadyAddresses in the same subset.
    	// Sets of addresses and ports that comprise a service.
    	// +optional
    	// +listType=atomic
    	Subsets []EndpointSubset `json:"subsets,omitempty" protobuf:"bytes,2,rep,name=subsets"`
    }
    
    // EndpointSubset is a group of addresses with a common set of ports. The
    // expanded set of endpoints is the Cartesian product of Addresses x Ports.
    // For example, given:
    //
    //	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (EndpointPort) SwaggerDoc() map[string]string {
    	return map_EndpointPort
    }
    
    var map_EndpointSubset = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    	allErrs = append(allErrs, ValidateEndpoints(newEndpoints)...)
    	return allErrs
    }
    
    func validateEndpointSubsets(subsets []core.EndpointSubset, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	for i := range subsets {
    		ss := &subsets[i]
    		idxPath := fldPath.Index(i)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top