Answers for "how to get all pods kubectl"

0

kubectl get all the pods

kubectl get pods -A 

# you can list down all the pods with wide range
kubectl get pods -A -o wide
Posted by: Guest on November-14-2021
0

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
Posted by: Guest on October-20-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language