Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 772 Bytes

ckad.md

File metadata and controls

37 lines (24 loc) · 772 Bytes

Certified Kubernetes Application Developer (CKAD)

Core Concepts

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

Namespaces

List all namespaces

kubectl get ns

List all the pods in the namespace 'neverland'

kubectl get po -n neverland

List all the pods in all the namespaces

kubectl get po --all-namespaces