kubectl --get pods 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: how get pods in kuber
# Get Pods in all namespaces
kubectl get po -A
# Get pods in default namespace
kubectl get po