kubectl Получите все стручки
kubectl get pods -A
# you can list down all the pods with wide range
kubectl get pods -A -o wide
Glamorous camel
kubectl get pods -A
# you can list down all the pods with wide range
kubectl get pods -A -o wide
# 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