Kubernetes CKA sample exam question 6 with answer

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
Verify:
kubectl get po web-load-5461 --show-labels