kubectl show labels 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 to show label of pod
kubectl apply -f https://raw.githubusercontent.com/openshift-evangelists/kbe/main/specs/labels/pod.yaml
Example 4: kubectl to show label of pod
NAME READY STATUS RESTARTS AGE LABELS
labelex 1/1 Running 0 10m env=development
Example 5: kubectl to show label of pod
NAME READY STATUS RESTARTS AGE LABELS
labelex 1/1 Running 0 16m env=development,owner=michael