How To Inspect k8s Svc and Endpoints in a Namespace

1

Switch to the desired namespace with kubie

kubie ns <namespace>
2

List all pods in the current namespace. Pick the pod/svc you want to inspect from the output

kubectl get po
3

Get details of your choses k8s service

kubectl get svc <svc>
4

Retrieve the endpoints of the service in YAML format.

kubectl get endpoints <svc> -o yaml