Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 366 Bytes

cka.md

File metadata and controls

15 lines (10 loc) · 366 Bytes

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