Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for EndpointSubset (0.26 sec)

  1. pkg/printers/internalversion/printers_test.go

    		{
    			endpoint: api.Endpoints{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "endpoint3",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(-3e11)},
    				},
    				Subsets: []api.EndpointSubset{
    					{
    						Addresses: []api.EndpointAddress{
    							{
    								IP: "1.2.3.4",
    							},
    							{
    								IP: "5.6.7.8",
    							},
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/defaults_test.go

    		}
    	}
    }
    
    func TestSetDefaultEndpointsProtocol(t *testing.T) {
    	in := &v1.Endpoints{Subsets: []v1.EndpointSubset{
    		{Ports: []v1.EndpointPort{{}, {Protocol: "UDP"}, {}}},
    	}}
    	obj := roundTrip(t, runtime.Object(in))
    	out := obj.(*v1.Endpoints)
    
    	for i := range out.Subsets {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *EndpointSubset) Reset()      { *m = EndpointSubset{} }
    func (*EndpointSubset) ProtoMessage() {}
    func (*EndpointSubset) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{46}
    }
    func (m *EndpointSubset) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *EndpointSubset) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/generated/openapi/zz_generated.openapi.go

    										Default: map[string]interface{}{},
    										Ref:     ref("k8s.io/api/core/v1.EndpointSubset"),
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    		Dependencies: []string{
    			"k8s.io/api/core/v1.EndpointSubset", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top