Question Deploy a web-load-5461 pod using the nginx:1.17 image with the labels set to tier=web Answer It is pretty simple:
kubectl run web-load-5461 --image=nginx:1.17 --labels tier=web
kubectl get po web-load-5461 --show-labels