You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Lists the nodes
kubectl get nodes
# Shows addresses of the master and other services
kubectl get cluster-info
# Lists the pods
kubectl get pods
# Lists the pods with more details
kubectl get pods -o wide
# Lists the pods with more detauls in all namespace
kubectl get pods -o wide --all-namepsace OR kubectl get pods -o wide -A
# Lists the services with more detauls in all namespace
kubectl get svc -o wide --all-namepsace OR kubectl get pods -o wide -A