Kubernetes

List all the pods with the label "env=prod"

Difficulty: unrated

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

Answer

k get po -l env=prod

To count them: k get po -l env=prod --no-headers | wc -l