Back to Devops Exercises

Cka

certificates/cka.md

latest365 B
Original Source

Certified Kubernetes Administrator (CKA)

Pods

<details> <summary>Deploy a pod called web-1985 using the nginx:alpine image</code></summary> <b>

kubectl run web-1985 --image=nginx:alpine --restart=Never </b></details>

<details> <summary>How to find out on which node a certain pod is running?</summary> <b>

kubectl get po -o wide </b></details>