kubernetes v1.33

Endpoints.subsets

The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service.

3 fields
Endpoints.subsets fields and descriptions
Field / TypeDescription
EndpointAddress[]

IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.

  • x-kubernetes-list-type: "atomic"
EndpointAddress[]

IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.

  • x-kubernetes-list-type: "atomic"
EndpointPort[]

Port numbers available on the related IP addresses.

  • x-kubernetes-list-type: "atomic"