Answers for "how get pods in kuber"

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
0

how get pods in kuber

# Get Pods in all namespaces
kubectl get po -A

# Get pods in default namespace
kubectl get po
Posted by: Guest on April-01-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language