Back to vault
Cluster
List Pods
kubectl get pods -AFunctional Description
Lists all pods across every namespace in the current Kubernetes cluster.
CategoryKubernetes
Difficultyadvanced
Execution Recipes
All Namespaces
kubectl get pods -A
Quick view of every pod, namespace, status, and age in the cluster.
Wide Output
kubectl get pods -A -o wide
Adds node, IP, and other context columns to the listing.
Official Documentation
View the technical reference