kubectl list pods code example
Example 1: kubectl to show label of pod
kubectl get pods --show-labels
Example 2: kubectl to show label of pod
kubectl label pods labelex owner=michael
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
Example 6: kubectl describe to yaml
kubectl describe <type> <name> -o yaml