Back to Blog

The KubeAstronaut Path: How to Earn All Kubernetes Certifications

A strategic guide to earning the CNCF KubeAstronaut title by passing all five Kubernetes certifications. Includes study order, timeline, free practice with CK-X, and tips for each exam.

By Sailor Team , April 9, 2026

There are five CNCF Kubernetes certifications. Most people aim for one or two. A small group goes for all five and earns the KubeAstronaut title — CNCF’s recognition for professionals who hold every Kubernetes certification simultaneously.

It’s a significant commitment, but it’s also a clear signal of deep Kubernetes expertise. If you’re considering the KubeAstronaut path, this guide covers the strategy, order, timeline, and resources to get there efficiently.

The Five Kubernetes Certifications

CertificationTypeDurationPassing ScoreDifficulty
KCNA — Kubernetes and Cloud Native AssociateMultiple choice90 min75%Entry-level
CKAD — Certified Kubernetes Application DeveloperPerformance-based2 hours66%Intermediate
CKA — Certified Kubernetes AdministratorPerformance-based2 hours66%Intermediate
KCSA — Kubernetes and Cloud Native Security AssociateMultiple choice90 min75%Intermediate
CKS — Certified Kubernetes Security SpecialistPerformance-based2 hours67%Advanced

To earn KubeAstronaut status, you need all five active at the same time. Each certification is valid for 2 years (KCNA and KCSA for 3 years), so the clock is ticking from your first pass.

The Optimal Certification Order

The order you take these exams matters. Here’s the most efficient path:

1. KCNA (Foundation)

Start here even if you already know Kubernetes. KCNA is multiple-choice and covers the cloud-native ecosystem broadly — Kubernetes architecture, container orchestration, GitOps, service mesh, and observability. It’s the easiest exam and builds confidence.

Prep time: 1-2 weeks if you have Kubernetes experience, 3-4 weeks if you’re newer.

2. CKAD (Developer Skills)

CKAD focuses on creating and managing workloads — pods, deployments, services, configmaps, jobs, and networking. It’s performance-based and fast-paced, but the scope is well-defined.

Taking CKAD before CKA lets you build strong kubectl muscle memory that pays off in every subsequent exam.

Prep time: 3-4 weeks of focused practice.

3. CKA (Admin Skills)

CKA expands on CKAD with cluster management topics — installation with kubeadm, etcd backup/restore, cluster upgrades, troubleshooting, and storage management. Your CKAD preparation gives you a head start on roughly 40% of the content.

Prep time: 3-4 weeks (faster if taken shortly after CKAD).

4. KCSA (Security Foundation)

KCSA is the security counterpart to KCNA — a multiple-choice exam covering Kubernetes security concepts, compliance frameworks, and security tooling. Take it as a bridge between CKA and CKS.

Prep time: 1-2 weeks.

5. CKS (Security Specialist)

Save CKS for last. It’s the hardest exam and requires an active CKA certification. By this point, you’ll have deep operational knowledge from CKA and security awareness from KCSA — both feed directly into CKS preparation.

Prep time: 4-6 weeks.

Timeline: 6 Months to KubeAstronaut

Here’s a realistic timeline for someone with existing Kubernetes experience:

MonthCertificationFocus
Month 1KCNACloud-native ecosystem, K8s fundamentals
Month 2CKADApplication deployment, developer workflows
Month 3CKACluster administration, troubleshooting
Month 4KCSASecurity concepts, compliance
Month 5-6CKSHands-on security, runtime protection

If you’re starting from scratch with Kubernetes, add 2-3 months of foundational learning before KCNA.

Free Practice with CK-X

Three of the five certifications (CKA, CKAD, CKS) are performance-based, meaning you need hands-on practice on real clusters. CK-X is the free, open-source simulator we built to help with exactly this.

# Install CK-X
curl -fsSL https://raw.githubusercontent.com/sailor-sh/CK-X/master/scripts/install.sh | bash

# Access at http://localhost:30080

CK-X includes labs for all three performance-based exams:

  • CKAD labs — Application deployment, configuration, observability
  • CKA labs — Cluster management, troubleshooting, storage
  • CKS labs — Security policies, runtime security, supply chain

The simulator runs real K3D clusters locally, with a web-based terminal and automated scoring that mirrors the exam experience. Use it as your primary practice tool throughout the KubeAstronaut journey.

Strategies for Each Exam

KCNA Strategy

This is a knowledge exam, not a hands-on one. Focus on:

  • Understanding Kubernetes architecture at a conceptual level
  • Knowing the CNCF landscape (Prometheus, Envoy, Helm, ArgoCD, etc.)
  • Cloud-native patterns: microservices, service mesh, GitOps
  • Container fundamentals and container runtimes

CKAD Strategy

Speed is everything. Practice these until they’re automatic:

# Your CKAD survival kit
alias k=kubectl
export do='--dry-run=client -o yaml'

# Create resources fast
k run nginx --image=nginx $do > pod.yaml
k create deploy web --image=nginx --replicas=3 $do > deploy.yaml
k create cm config --from-literal=key=value
k create secret generic creds --from-literal=pass=secret
k create job task --image=busybox -- echo "done"

Focus on multi-container pods, probes, resource limits, network policies, and ingress resources.

CKA Strategy

Build on your CKAD skills and add cluster operations:

# CKA-specific skills to practice
# etcd backup
ETCDCTL_API=3 etcdctl snapshot save backup.db \
  --endpoints=https://127.0.0.1:2379 \
  --cacert=/etc/kubernetes/pki/etcd/ca.crt \
  --cert=/etc/kubernetes/pki/etcd/server.crt \
  --key=/etc/kubernetes/pki/etcd/server.key

# Cluster upgrade sequence
kubeadm upgrade plan
kubeadm upgrade apply v1.xx.x
kubectl drain node --ignore-daemonsets
apt-get upgrade kubelet kubectl
systemctl restart kubelet
kubectl uncordon node

# Troubleshooting
kubectl get nodes
systemctl status kubelet
journalctl -u kubelet

Troubleshooting is 30% of the CKA — develop a systematic debugging approach.

KCSA Strategy

Similar to KCNA but security-focused:

  • Kubernetes security primitives (RBAC, network policies, pod security)
  • Supply chain security concepts (image signing, scanning)
  • Compliance frameworks relevant to Kubernetes
  • Security tooling ecosystem (Falco, Trivy, OPA)

CKS Strategy

The hardest exam. Practice these security scenarios extensively:

  • Implementing network policies (default-deny, then selective allow)
  • Configuring RBAC with least privilege
  • Running Trivy scans and interpreting results
  • Setting up Falco rules and reading alerts
  • Applying pod security standards
  • Configuring audit logging

The Compound Effect

One of the best things about the KubeAstronaut path is how each certification builds on the previous ones:

  • KCNA gives you vocabulary and conceptual understanding
  • CKAD gives you kubectl speed and workload management skills
  • CKA gives you cluster-level operational knowledge
  • KCSA gives you a security mindset and awareness
  • CKS combines everything into applied security expertise

By the time you reach CKS, you’re not starting from zero — you’re building on months of accumulated knowledge and practice.

Comprehensive Practice

CK-X covers the hands-on practice needs for the three performance-based exams. When you’re ready to go beyond the free labs and want more extensive preparation, the KubeAstronaut Mock Exam Bundle provides comprehensive practice for the entire KubeAstronaut path. Built by the same team behind CK-X, it offers a large question bank across all certifications with AI-powered performance tracking that identifies your weakest areas across all five exam domains.

You can also prepare for individual exams:

Maintaining Your KubeAstronaut Status

Once you’ve earned all five certifications, the work isn’t over. Certifications expire:

  • KCNA/KCSA: Valid for 3 years
  • CKA/CKAD/CKS: Valid for 2 years

Plan your renewals strategically. Since CKA is a prerequisite for CKS, renew CKA before CKS expires. Set calendar reminders 2 months before each expiration date.

Is KubeAstronaut Worth It?

The honest answer: it depends on your goals.

It’s worth it if:

  • You want to demonstrate deep, comprehensive Kubernetes expertise
  • You work in a role that spans development, operations, and security
  • You’re building a career in cloud-native consulting or training
  • You enjoy the challenge and want to push your skills

It might not be worth it if:

  • You only work in one area (e.g., purely development — CKAD alone may suffice)
  • You’re cost-constrained (five exams add up, even with bundle discounts)
  • You’d rather spend the time on other technologies

Either way, each individual certification has standalone value. You don’t have to commit to all five upfront — start with the one most relevant to your work and decide from there.

Conclusion

The KubeAstronaut path is a marathon, not a sprint. Six months of focused preparation, the right practice tools, and a strategic certification order can get you there.

Start with the free CK-X simulator to build your hands-on skills, take the exams in the order outlined above, and leverage each certification’s knowledge in the next one. The compound effect of this approach means each exam gets a little easier — except CKS, which is always hard.

Set your timeline, start practicing, and take it one cert at a time.

Limited Time Offer: Get 80% off all Mock Exam Bundles | Sale ends in 7 days. Start learning today.

Claim Now