Skip to content

discovery_v1

Endpoint

class lightkube.models.discovery_v1.Endpoint(addresses, conditions=None, deprecatedTopology=None, hints=None, hostname=None, nodeName=None, targetRef=None, zone=None)

Endpoint represents a single logical "backend" implementing a service.

parameters

  • addresses List[str] - addresses of this endpoint. The contents of this field are interpreted according to the corresponding EndpointSlice addressType field. Consumers must handle different types of addresses in the context of their own capabilities. This must contain at least one address but no more than 100.
  • conditions EndpointConditions - (optional) conditions contains information about the current status of the endpoint.
  • deprecatedTopology dict - (optional) deprecatedTopology contains topology information part of the v1beta1 API. This field is deprecated, and will be removed when the v1beta1 API is removed (no sooner than kubernetes v1.24). While this field can hold values, it is not writable through the v1 API, and any attempts to write to it will be silently ignored. Topology information can be found in the zone and nodeName fields instead.
  • hints EndpointHints - (optional) hints contains information associated with how an endpoint should be consumed.
  • hostname str - (optional) hostname of this endpoint. This field may be used by consumers of endpoints to distinguish endpoints from each other (e.g. in DNS names). Multiple endpoints which use the same hostname should be considered fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS Label (RFC 1123) validation.
  • nodeName str - (optional) nodeName represents the name of the Node hosting this endpoint. This can be used to determine endpoints local to a Node. This field can be enabled with the EndpointSliceNodeName feature gate.
  • targetRef core_v1.ObjectReference - (optional) targetRef is a reference to a Kubernetes object that represents this endpoint.
  • zone str - (optional) zone is the name of the Zone this endpoint exists in.

EndpointConditions

class lightkube.models.discovery_v1.EndpointConditions(ready=None, serving=None, terminating=None)

EndpointConditions represents the current condition of an endpoint.

parameters

  • ready bool - (optional) ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint. A nil value indicates an unknown state. In most cases consumers should interpret this unknown state as ready. For compatibility reasons, ready should never be "true" for terminating endpoints.
  • serving bool - (optional) serving is identical to ready except that it is set regardless of the terminating state of endpoints. This condition should be set to true for a ready endpoint that is terminating. If nil, consumers should defer to the ready condition. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.
  • terminating bool - (optional) terminating indicates that this endpoint is terminating. A nil value indicates an unknown state. Consumers should interpret this unknown state to mean that the endpoint is not terminating. This field can be enabled with the EndpointSliceTerminatingCondition feature gate.

EndpointHints

class lightkube.models.discovery_v1.EndpointHints(forZones=None)

EndpointHints provides hints describing how an endpoint should be consumed.

parameters

  • forZones ForZone - (optional) forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing.

EndpointPort

class lightkube.models.discovery_v1.EndpointPort(appProtocol=None, name=None, port=None, protocol=None)

EndpointPort represents a Port used by an EndpointSlice

parameters

  • appProtocol str - (optional) The application protocol for this port. This field follows standard Kubernetes label syntax. Un-prefixed names are reserved for IANA standard service names (as per RFC-6335 and http://www.iana.org/assignments/service-names). Non-standard protocols should use prefixed names such as mycompany.com/my-custom-protocol.
  • name str - (optional) 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: * must be no more than 63 characters long. * must consist of lower case alphanumeric characters or '-'. * must start and end with an alphanumeric character. Default is empty string.
  • port int - (optional) The port number of the endpoint. If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer.
  • protocol str - (optional) The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.

EndpointSlice

class lightkube.models.discovery_v1.EndpointSlice(addressType, endpoints, apiVersion=None, kind=None, metadata=None, ports=None)

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.

parameters

  • addressType str - addressType specifies the type of address carried by this EndpointSlice. All addresses in this slice must be the same type. This field is immutable after creation. The following address types are currently supported: * IPv4: Represents an IPv4 Address. * IPv6: Represents an IPv6 Address. * FQDN: Represents a Fully Qualified Domain Name.
  • endpoints Endpoint - endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.
  • apiVersion str - (optional) APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info
  • kind str - (optional) Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info
  • metadata meta_v1.ObjectMeta - (optional) Standard object's metadata.
  • ports EndpointPort - (optional) ports specifies the list of network ports exposed by each endpoint in this slice. Each port must have a unique name. When ports is empty, it indicates that there are no defined ports. When a port is defined with a nil port value, it indicates "all ports". Each slice may include a maximum of 100 ports.

EndpointSliceList

class lightkube.models.discovery_v1.EndpointSliceList(items, apiVersion=None, kind=None, metadata=None)

EndpointSliceList represents a list of endpoint slices

parameters

  • items EndpointSlice - List of endpoint slices
  • apiVersion str - (optional) APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info
  • kind str - (optional) Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info
  • metadata meta_v1.ListMeta - (optional) Standard list metadata.

ForZone

class lightkube.models.discovery_v1.ForZone(name)

ForZone provides information about which zones should consume this endpoint.

parameters

  • name str - name represents the name of the zone.