Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for EndpointPort (0.25 sec)

  1. pkg/proxy/iptables/proxier_test.go

    			Name:     ptr.To("p33"),
    			Port:     ptr.To[int32](33),
    			Protocol: ptr.To(v1.ProtocolUDP),
    		}}
    	}
    	complexSubset8 := func(eps *discovery.EndpointSlice) {
    		eps.AddressType = discovery.AddressTypeIPv4
    		eps.Endpoints = []discovery.Endpoint{{
    			Addresses: []string{"10.4.4.4"},
    			NodeName:  ptr.To(testHostname),
    		}}
    		eps.Ports = []discovery.EndpointPort{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.EndpointPort)(nil), (*core.EndpointPort)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_EndpointPort_To_core_EndpointPort(a.(*v1.EndpointPort), b.(*core.EndpointPort), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.EndpointPort)(nil), (*v1.EndpointPort)(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)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      optional string nodeName = 4;
    
      // Reference to object providing the endpoint.
      // +optional
      optional ObjectReference targetRef = 2;
    }
    
    // EndpointPort is a tuple that describes a single port.
    // +structType=atomic
    message EndpointPort {
      // The name of this port.  This must match the 'name' field in the
      // corresponding ServicePort.
      // Must be a DNS_LABEL.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// +optional
    	NodeName *string
    	// Optional: The kubernetes object related to the entry point.
    	TargetRef *ObjectReference
    }
    
    // EndpointPort is a tuple that describes a single port.
    type EndpointPort struct {
    	// The name of this port (corresponds to ServicePort.Name).  Optional
    	// if only one port is defined.  Must be a DNS_LABEL.
    	Name string
    
    	// The port number.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      optional string nodeName = 4;
    
      // Reference to object providing the endpoint.
      // +optional
      optional ObjectReference targetRef = 2;
    }
    
    // EndpointPort is a tuple that describes a single port.
    // +structType=atomic
    message EndpointPort {
      // The name of this port.  This must match the 'name' field in the
      // corresponding ServicePort.
      // Must be a DNS_LABEL.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. pkg/registry/core/service/storage/storage_test.go

    			[]api.EndpointAddress{
    				epstest.MakeEndpointAddress("1.2.3.4", "unnamed"),
    			},
    			[]api.EndpointPort{
    				epstest.MakeEndpointPort("", 80),
    			}),
    		epstest.MakeEndpoints("unnamed2",
    			[]api.EndpointAddress{
    				epstest.MakeEndpointAddress("1.2.3.5", "unnamed"),
    			},
    			[]api.EndpointPort{
    				epstest.MakeEndpointPort("", 80),
    			}),
    		epstest.MakeEndpoints("named",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (EndpointAddress) SwaggerDoc() map[string]string {
    	return map_EndpointAddress
    }
    
    var map_EndpointPort = map[string]string{
    	"":            "EndpointPort is a tuple that describes a single port.",
    	"name":        "The name of this port.  This must match the 'name' field in the corresponding ServicePort. Must be a DNS_LABEL. Optional only if one port is defined.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// Reference to object providing the endpoint.
    	// +optional
    	TargetRef *ObjectReference `json:"targetRef,omitempty" protobuf:"bytes,2,opt,name=targetRef"`
    }
    
    // EndpointPort is a tuple that describes a single port.
    // +structType=atomic
    type EndpointPort struct {
    	// The name of this port.  This must match the 'name' field in the
    	// corresponding ServicePort.
    	// Must be a DNS_LABEL.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath, ipAddress, "may not be in the link-local multicast range (224.0.0.0/24, ff02::/10)"))
    	}
    	return allErrs
    }
    
    func validateEndpointPort(port *core.EndpointPort, requireName bool, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if requireName && len(port.Name) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("name"), ""))
    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