Kubernetes

In what namespace the etcd pod is running? list the pods in that namespace

Difficulty: unrated

Source: bregman-arie/devops-exercises by Arie Bregman

Answer

k get po -n kube-system

Let's say you didn't know in what namespace it is. You could then run k get po -A | grep etc to find the Pod and see in what namespace it resides.