CKA Practice Tasks

A comprehensive hands-on drill index for every topic in the CKA curriculum. Each section links to the Practical Practice tasks on the topic page. Use this for pre-exam cramming, daily lab drills, or weak-domain targeting.

How to Use This Page

  1. Pick a weak domain from the weight table below
  2. Complete all tasks in that domain on the linked topic pages
  3. Time yourself — CKA tasks are designed to be 5–7 minutes each
  4. Review solutions only after attempting — resist the urge to peek early
  5. Track progress in your personal Learning Tracker

Exam Mindset: The CKA is an open-book practical exam. Speed comes from repetition, not memorization. Every task here uses the same imperative → declarative → verify pattern you will use on exam day.


Domain Task Index


Universal Exam Speed Patterns

These commands are your muscle memory. Every practice task should reinforce one or more of these patterns.

# Generate manifest skeleton (your #1 time-saver)
kubectl run nginx --image=nginx --dry-run=client -o yaml > pod.yaml
kubectl create deployment web --image=nginx --replicas=3 --dry-run=client -o yaml > deploy.yaml
 
# Explain any field without leaving the terminal
kubectl explain deployment.spec.template.spec.containers.livenessProbe
 
# Fast context switching (critical on multi-cluster exams)
kubectl config use-context <exam-context>
kubectl config get-contexts
 
# Dry-run validation before every apply
kubectl apply -f manifest.yaml --dry-run=client
kubectl apply -f manifest.yaml --dry-run=server

PhaseFocusDaysPages/Day
Phase 1: FoundationPods, Deployments, Services, ConfigMapsDays 1–72–3
Phase 2: Deep DiveNetworking, Storage, RBAC, SchedulingDays 8–142–3
Phase 3: TroubleshootingApp, Control Plane, Worker Node failuresDays 15–212
Phase 4: Cluster OpsKubeadm, Upgrades, ETCD, DRDays 22–282
Phase 5: Mock ExamRandom 17 tasks in 120 minutesDays 29–351 full mock
Phase 6: Weak Area PolishRe-do only failed domainsDays 36–40targeted


Tags: kubernetes cka practice hands-on exam-prep devops certification