30 Kubernetes Tasks Every CKA Candidate Should Practice Before Exam Day

Search for a command to run...

No comments yet. Be the first to comment.
Follow my journey from DevOps Engineer to Kubestronaut as I explore Kubernetes, CNCF certifications, cloud-native technologies, and hands-on learning. In this series, I share my experiences preparing for and passing certifications such as CKA, CKAD, and CKS, along with exam strategies, study resources, troubleshooting lessons, and practical insights gained from real-world Kubernetes environments. Whether you're just starting with Kubernetes or pursuing advanced CNCF certifications, I hope these experiences help guide your own cloud-native journey.
One of the unique aspects of the Certified Kubernetes Administrator (CKA) exam is that Kubernetes documentation is allowed during the exam. When I first learned this, I thought it would make the exam
Kubernetes Control Plane explained in a practical way for engineers who manage real-world clusters. Introduction When I first started learning Kubernetes, I could create Pods, Deployments, and Service

Kubernetes networking is one of the most important — and often most confusing — topics for beginners. Pods have IP addresses, Services have virtual IPs, DNS magically resolves names, Ingress routes tr

One of the most common questions developers ask when they start working with Kubernetes is: “What actually happens when a user sends a request to my application?” We deploy Pods, create Services, co

Most developers know that Kubernetes can automatically restart failed applications. But have you ever wondered what actually happens behind the scenes when a Pod crashes? When I first started learning

When developers first start learning Kubernetes, they quickly understand Pods and Deployments. You create a Deployment, Kubernetes creates Pods, and your application starts running. Simple, right? Not

Shahzad Ahmad | Kubernetes, DevOps & Cloud Native Journey
32 posts
Senior DevOps Engineer documenting my journey through Kubernetes, CNCF certifications, cloud-native technologies, platform engineering, and automation. Here you'll find hands-on tutorials, certification experiences (CKA, CKAD, CKS), exam strategies, troubleshooting guides, and lessons learned from real-world DevOps and Kubernetes environments. My goal is to share practical knowledge, help others in their cloud-native journey, and ultimately document the path from DevOps Engineer to Kubestronaut.
One of the most common questions I receive from aspiring Certified Kubernetes Administrator (CKA) candidates is:
“What should I actually practice before the exam?”
After completing the CKA and spending countless hours working through labs, troubleshooting clusters, and exploring Kubernetes documentation, I realized that passing the exam is less about memorizing commands and more about being comfortable performing common Kubernetes tasks quickly and accurately.
The CKA is a performance-based certification. You are expected to work with real Kubernetes clusters, solve problems, and complete administrative tasks under time pressure.
In this article, I’ve compiled 30 Kubernetes tasks that every CKA candidate should practice before exam day.
kubectl cluster-info
kubectl get nodes
Understand the health and status of the cluster.
kubectl drain node01 --ignore-daemonsets
kubectl uncordon node01
A common administration task.
kubectl cordon node01
Know the difference between cordon and drain.
Practice kubeadm upgrade procedures in a lab environment.
A high-value CKA topic.
Practice:
Snapshot creation
Snapshot restoration
Verifying cluster recovery
kubectl run nginx --image=nginx
kubectl create deployment nginx \
--image=nginx
kubectl scale deployment nginx \
--replicas=5
kubectl set image deployment/nginx \
nginx=nginx:latest
kubectl rollout undo deployment nginx
Practice:
ClusterIP
NodePort
LoadBalancer
Use:
kubectl logs
kubectl describe pod
Schedule workloads on specific nodes.
Practice preferred and required affinity.
One of the most tested topics.
Create and modify static pods.
Practice sidecar patterns.
Allow traffic.
Block traffic.
Restrict namespaces.
Use:
kubectl exec
curl
Understand DNS troubleshooting basics.
Practice:
nslookup
dig
inside pods.
Create simple ingress resources.
Practice static PV creation.
Bind applications to storage.
Ensure pods can access mounted data.
Understand why storage claims fail.
kubectl create serviceaccount app-sa
Practice:
Roles
ClusterRoles
RoleBindings
ClusterRoleBindings
Use:
kubectl auth can-i
This command is extremely useful during the exam.
The best CKA candidates become excellent troubleshooters.
Practice fixing:
Pending Pods
CrashLoopBackOff
ImagePullBackOff
Failed Scheduling
DNS Failures
Network Policy Issues
Storage Problems
RBAC Errors
If you can troubleshoot confidently, you’re already halfway to passing the exam.
When preparing for the CKA, I didn’t focus on reading theory repeatedly.
Instead, I followed a simple cycle:
Understand the concept.
Perform the task yourself.
Intentionally create problems.
Troubleshoot until it works.
This approach helped me develop the practical skills required for a performance-based certification exam.
The CKA exam doesn’t test whether you can memorize Kubernetes documentation. It tests whether you can administer a Kubernetes cluster efficiently under pressure.
If you can comfortably perform these 30 tasks without constantly searching for answers, you’ll be well prepared for exam day.
Focus on hands-on practice, troubleshooting, and understanding how Kubernetes components work together.
That’s what ultimately helped me pass the CKA and continue my journey toward becoming a Kubestronaut.
If you’re preparing for Kubernetes certifications, pursuing the Kubestronaut journey, or working in the cloud-native ecosystem, I’d love to connect.
Follow me for more articles on Kubernetes, CNCF certifications, DevOps, Platform Engineering, and Cloud-Native technologies.
LinkedIn: https://www.linkedin.com/in/shahzadaliahmad/
LFX Profile: https://openprofile.dev/profile/shahzadahmad91
Credly: https://www.credly.com/users/shahzadahmad
Website: https://shahzadahmad.dev/
If you found this article helpful, consider sharing it with others in the Kubernetes community.