kubectl get all namespaces code example
Example 1: kubectl list context
kubectl config get-contexts
Example 2: kubernetes get namespace
kubectl get namespaces
Example 3: kubectl get pods
kubectl get pods
kubectl get pods -n my-namespace
kubectl get pods --all-namespaces
Example 4: kubectl get pod by node
kubectl get pods --all-namespaces -o wide --field-selector spec.nodeName=<node>
Example 5: kubernetes get services
kubectl get services
kubectl get services -n my-namespace
kubectl get services --all-namespaces