Advanced Certification Prep #kubernetes #cka #ckad #cks

Kubernetes & CKA Exam Language

5 exercises — CrashLoopBackOff, RBAC, DaemonSets, PersistentVolume access modes, and NetworkPolicies. The vocabulary behind every Kubernetes certification exam.

0 / 5 completed
CKA exam strategy
  • Know Pod statuses cold: CrashLoopBackOff, Pending, ImagePullBackOff, OOMKilled, Evicted, Completed
  • Use --dry-run=client -o yaml: generate YAML without applying — faster than writing from scratch
  • RBAC rule: namespace-scoped = Role + RoleBinding; cluster-wide = ClusterRole + ClusterRoleBinding
  • NetworkPolicy gotcha: all traffic allowed until first NetworkPolicy selects the Pod
  • kubectl explain: kubectl explain pod.spec.containers.resources — your built-in reference during the exam
1 / 5
An exam question says: "A Pod is in CrashLoopBackOff status." What does this mean?