EndpointSlice
apiVersion: discovery.k8s.io/v1beta1
import "k8s.io/api/discovery/v1beta1"
EndpointSlice
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.
-
apiVersion: discovery.k8s.io/v1beta1
-
kind: EndpointSlice
-
metadata (ObjectMeta)
Standard object’s metadata. -
addressType (string), required
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), required
Atomic: will be replaced during a merge
endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.
Endpoint represents a single logical “backend” implementing a service.- endpoints.addresses ([]string), required
Set: unique values will be kept during a merge
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. - endpoints.conditions (EndpointConditions)
conditions contains information about the current status of the endpoint.
EndpointConditions represents the current condition of an endpoint. - endpoints.conditions.ready (boolean)
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. - endpoints.hostname (string)
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 pass DNS Label (RFC 1123) validation. - endpoints.targetRef (ObjectReference)
targetRef is a reference to a Kubernetes object that represents this endpoint. - endpoints.topology (map[string]string)
topology contains arbitrary topology information associated with the endpoint. These key/value pairs must conform with the label format. https://kubernetes.io/docs/concepts/overview/working-with-objects/labels Topology may include a maximum of 16 key/value pairs. This includes, but is not limited to the following well known keys: * kubernetes.io/hostname: the value indicates the hostname of the node
where the endpoint is located. This should match the corresponding
node label.- topology.kubernetes.io/zone: the value indicates the zone where the
endpoint is located. This should match the corresponding node label. - topology.kubernetes.io/region: the value indicates the region where the
endpoint is located. This should match the corresponding node label.
- topology.kubernetes.io/zone: the value indicates the zone where the
- endpoints.addresses ([]string), required
-
ports ([]EndpointPort)
Atomic: will be replaced during a merge
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.
EndpointPort represents a Port used by an EndpointSlice- ports.port (int32)
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. - ports.protocol (string)
The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP. - ports.name (string)
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. - ports.appProtocol (string)
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.
- ports.port (int32)
EndpointSliceList
EndpointSliceList represents a list of endpoint slices
-
apiVersion: discovery.k8s.io/v1beta1
-
kind: EndpointSliceList
-
metadata (ListMeta)
Standard list metadata. -
items ([]EndpointSlice), required
List of endpoint slices
Operations
get
read the specified EndpointSlice
HTTP Request
GET /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}
Parameters
- {name} (string), required
name of the EndpointSlice - {namespace} (string), required
namespace - ?pretty (string)
pretty
Response
200 (EndpointSlice): OK
401: Unauthorized
list
list or watch objects of kind EndpointSlice
HTTP Request
GET /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices
Parameters
- {namespace} (string), required
namespace - ?allowWatchBookmarks (boolean)
allowWatchBookmarks - ?continue (string)
continue - ?fieldSelector (string)
fieldSelector - ?labelSelector (string)
labelSelector - ?limit (integer)
limit - ?pretty (string)
pretty - ?resourceVersion (string)
resourceVersion - ?resourceVersionMatch (string)
resourceVersionMatch - ?timeoutSeconds (integer)
timeoutSeconds - ?watch (boolean)
watch
Response
200 (EndpointSliceList): OK
401: Unauthorized
list
list or watch objects of kind EndpointSlice
HTTP Request
GET /apis/discovery.k8s.io/v1beta1/endpointslices
Parameters
- ?allowWatchBookmarks (boolean)
allowWatchBookmarks - ?continue (string)
continue - ?fieldSelector (string)
fieldSelector - ?labelSelector (string)
labelSelector - ?limit (integer)
limit - ?pretty (string)
pretty - ?resourceVersion (string)
resourceVersion - ?resourceVersionMatch (string)
resourceVersionMatch - ?timeoutSeconds (integer)
timeoutSeconds - ?watch (boolean)
watch
Response
200 (EndpointSliceList): OK
401: Unauthorized
create
create an EndpointSlice
HTTP Request
POST /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices
Parameters
-
{namespace} (string), required
namespace -
body (EndpointSlice), required
-
?dryRun (string)
dryRun -
?fieldManager (string)
fieldManager -
?pretty (string)
pretty
Response
200 (EndpointSlice): OK
201 (EndpointSlice): Created
202 (EndpointSlice): Accepted
401: Unauthorized
update
replace the specified EndpointSlice
HTTP Request
PUT /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}
Parameters
-
{name} (string), required
name of the EndpointSlice -
{namespace} (string), required
namespace -
body (EndpointSlice), required
-
?dryRun (string)
dryRun -
?fieldManager (string)
fieldManager -
?pretty (string)
pretty
Response
200 (EndpointSlice): OK
201 (EndpointSlice): Created
401: Unauthorized
patch
partially update the specified EndpointSlice
HTTP Request
PATCH /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}
Parameters
-
{name} (string), required
name of the EndpointSlice -
{namespace} (string), required
namespace -
body (Patch), required
-
?dryRun (string)
dryRun -
?fieldManager (string)
fieldManager -
?force (boolean)
force -
?pretty (string)
pretty
Response
200 (EndpointSlice): OK
401: Unauthorized
delete
delete an EndpointSlice
HTTP Request
DELETE /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices/{name}
Parameters
-
{name} (string), required
name of the EndpointSlice -
{namespace} (string), required
namespace -
body (DeleteOptions)
-
?dryRun (string)
dryRun -
?gracePeriodSeconds (integer)
gracePeriodSeconds -
?pretty (string)
pretty -
?propagationPolicy (string)
propagationPolicy
Response
200 (Status): OK
202 (Status): Accepted
401: Unauthorized
deletecollection
delete collection of EndpointSlice
HTTP Request
DELETE /apis/discovery.k8s.io/v1beta1/namespaces/{namespace}/endpointslices
Parameters
-
{namespace} (string), required
namespace -
body (DeleteOptions)
-
?continue (string)
continue -
?dryRun (string)
dryRun -
?fieldSelector (string)
fieldSelector -
?gracePeriodSeconds (integer)
gracePeriodSeconds -
?labelSelector (string)
labelSelector -
?limit (integer)
limit -
?pretty (string)
pretty -
?propagationPolicy (string)
propagationPolicy -
?resourceVersion (string)
resourceVersion -
?resourceVersionMatch (string)
resourceVersionMatch -
?timeoutSeconds (integer)
timeoutSeconds
Response
200 (Status): OK
401: Unauthorized