Show only pods in Running phase.
Section: AWS, kubectl, and Docker
Filter running pods
bash
bash
kubectl get pods -o json | jq '.items[] | select(.status.phase == "Running") | .metadata.name'Explanation
Useful for triage and operational scripts.
Learn the surrounding workflow
Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.
Related commands
Same sheet · prioritizing AWS, kubectl, and Docker