Skip to content

Files

Latest commit

author
abregman
Jul 22, 2021
6e01886 · Jul 22, 2021

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