kubectl get pods all namespaces code example

Example 1: kubectl get pods

# Get pods in default namespace
kubectl get pods

#Get Pods in my-namespace
kubectl get pods -n my-namespace

#Get Pods in all namespaces
kubectl get pods --all-namespaces

Example 2: kubectl get pod by node

kubectl get pods --all-namespaces -o wide --field-selector spec.nodeName=

Example 3: get containers in pod

kubectl get pods POD_NAME_HERE -o jsonpath='{.spec.containers[*].name}'

Example 4: kubectl describe to yaml

kubectl describe   -o yaml

Tags:

Misc Example