devops-exercises/certificates/ckad.md
2021-07-18 22:01:27 +03:00

638 B

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

Namespaces

List all namespaces

kubectl get ns

List all the pods in the namespace 'neverland'

kubectl get ns -n neverland

List all the pods in all the namespaces

kubectl get po --all-namespaces