## Certified Kubernetes Administrator (CKA) ### Pods
Deploy a pod called web-1985 using the nginx:alpine image
`kubectl run web-1985 --image=nginx:alpine --restart=Never`
How to find out on which node a certain pod is running?
`kubectl get po -o wide`