devops-exercises/certificates/cka.md
2021-07-22 20:45:30 +03:00

366 B

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