Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for targetRefs (0.18 sec)

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

    	out.IP = in.IP
    	out.Hostname = in.Hostname
    	out.NodeName = (*string)(unsafe.Pointer(in.NodeName))
    	out.TargetRef = (*core.ObjectReference)(unsafe.Pointer(in.TargetRef))
    	return nil
    }
    
    // Convert_v1_EndpointAddress_To_core_EndpointAddress is an autogenerated conversion function.
    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. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	NodeName *string `json:"nodeName,omitempty" protobuf:"bytes,4,opt,name=nodeName"`
    	// 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 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.24.md

    - Endpoints and EndpointSlice controllers no longer populate [resourceVersion of targetRef](https://kubernetes.io/docs/reference/kubernetes-api/common-definitions/object-reference/#ObjectReference) in Endpoints and EndpointSlices ([#108450](https://github.com/kubernetes/kubernetes/pull/108450), [@tnqn](https://github.com/tnqn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      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
    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

    	Hostname string
    	// Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.
    	// +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
    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/types_swagger_doc_generated.go

    	"hostname":  "The Hostname of this endpoint",
    	"nodeName":  "Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.",
    	"targetRef": "Reference to object providing the endpoint.",
    }
    
    func (EndpointAddress) SwaggerDoc() map[string]string {
    	return map_EndpointAddress
    }
    
    var map_EndpointPort = 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. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top