LabHub

Blog

How to Become a Kubestronaut in 2026 — The Complete CNCF Certification Roadmap (KCNA, KCSA, CKA, CKAD, CKS)

한국어English日本語

Introduction — A Journey to Collect Five Stars

There is one jacket that always stands out at KubeCon.

The blue jacket with the rocket logo cannot be bought. It is reserved for people who hold all five CNCF Kubernetes certifications in active status at the same time — the Kubestronauts.

First announced at KubeCon Paris in 2024, the program has become a symbolic milestone for Kubernetes engineers. And above it now sits an even higher tier: the Golden Kubestronaut, which requires conquering every CNCF certification in existence.

This guide covers the entire path to becoming a Kubestronaut as of 2026: how the five exams are structured, the optimal order to take them, how to save hundreds of dollars on exam fees, how to use the killer.sh simulator, how to set up your terminal on exam day, and a realistic 6-12 month roadmap for people with full-time jobs.

What Is the Kubestronaut Program?

Kubestronaut is an official recognition program run by the CNCF (Cloud Native Computing Foundation).

The condition is simple: hold all five of the following certifications in simultaneously active status.

The key phrase is "simultaneously active." If even one expires, you lose eligibility — which is why sequencing and schedule management matter as much as passing itself. Once you qualify, the CNCF verifies your status and reaches out with welcome package instructions, and the official page publishes the list of Kubestronauts by country.

Kubestronaut Benefits — The Jacket Is Just the Beginning

The jacket is the famous part, but the practical benefits go further.

The coupons are the quiet killer feature. Each of the five certifications expires after 24 months, so a program that halves your renewal costs is effectively a built-in retention mechanism. Details can change, so always confirm against the official page.

Golden Kubestronaut — The Summit of 15 Certifications

Announced in 2025, the Golden Kubestronaut is the next level up.

On top of the original five, it requires every remaining CNCF certification plus the Linux Foundation LFCS. As of 2026, that means roughly these 15 credentials.

Per the announcement, the perks include a dedicated backpack and beanie, one free KubeCon registration per year, and a title that lasts a lifetime once achieved. Since new CNCF certifications can extend the requirements for future challengers, the shorter the list is, the better the time to start.

The Five Certifications at a Glance

Here is the full picture first. List prices reflect the official pages as of early 2026 and can change with sales and policy updates.

CertificationFormatDurationQuestionsPass MarkList PriceValidity
KCNAMultiple choice (proctored)90 min6075%$25024 months
KCSAMultiple choice (proctored)90 min6075%$25024 months
CKAHands-on (terminal)120 min15-20 tasks66%$44524 months
CKADHands-on (terminal)120 min15-20 tasks66%$44524 months
CKSHands-on (terminal)120 min15-20 tasks67%$44524 months

Only two rules to remember. First, CKS can only be taken by holders of a valid CKA. Second, you must schedule each exam within 12 months of purchase, and every exam includes one free retake.

KCNA — Your First Step into Cloud Native

KCNA is the entry-level theory exam covering Kubernetes and the broader cloud native ecosystem.

DomainWeight
Kubernetes Fundamentals46%
Container Orchestration22%
Cloud Native Architecture16%
Cloud Native Observability8%
Cloud Native Application Delivery8%

Nearly half the exam is Kubernetes fundamentals: core objects like Pods, Deployments and Services, control plane components, and general CNCF ecosystem literacy (Prometheus, Helm, GitOps concepts).

With hands-on experience, one to two weeks of study is usually enough; complete beginners should plan for about four weeks. But do not dismiss it as "the easy one." The pass mark is 75% — higher than the hands-on exams — and sloppy preparation trips people up surprisingly often.

KCSA — The Second Theory Exam That Maps Out Security

KCSA draws the conceptual map of Kubernetes security.

DomainWeight
Overview of Cloud Native Security14%
Kubernetes Cluster Component Security22%
Kubernetes Security Fundamentals22%
Kubernetes Threat Model16%
Platform Security16%
Compliance and Security Frameworks10%

Expect an even spread of topics: the 4C model (Cloud, Cluster, Container, Code), STRIDE threat modeling, Pod Security Standards, RBAC, and audit logging.

Its positioning is what makes it interesting: KCSA is effectively the theory edition of CKS. Scheduling it right before CKS lets concept review and hands-on practice reinforce each other — which is exactly why the recommended sequence below puts KCSA fourth.

CKA — The Standard for Cluster Administration

CKA is the flagship Kubernetes certification. You get 120 minutes to solve 15-20 tasks while hopping between several live clusters.

DomainWeight
Troubleshooting30%
Cluster Architecture, Installation & Configuration25%
Services & Networking20%
Workloads & Scheduling15%
Storage10%

As the weights suggest, troubleshooting dominates at 30%: reviving dead nodes, diagnosing kubelet failures, and repairing control planes — and those tasks carry high point values too. Since the February 2025 refresh, Helm, Kustomize, the Gateway API, CRDs and Operators are also in scope.

And then there is the most classic CKA task of all — the etcd backup, which you should practice until your hands remember it.

# Classic CKA task — take an etcd snapshot backup
ETCDCTL_API=3 etcdctl snapshot save /var/lib/backup/etcd-snapshot.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

If you have to look up those three certificate paths in the docs every time, you lose three minutes. Run the backup and restore as a pair at least ten times before exam day.

CKAD — A Speed Run from the Developer Perspective

CKAD tests your ability to run applications on Kubernetes.

DomainWeight
Application Environment, Configuration and Security25%
Application Design and Build20%
Application Deployment20%
Services and Networking20%
Application Observability and Maintenance15%

The focus is everything a developer touches daily: ConfigMaps and Secrets, all three probe types, resource limits, CronJobs, canary and blue-green rollout strategies, and working with Helm charts.

The essence of CKAD is speed. Individual tasks are gentler than CKA, but the time per question is tighter — without the habit of generating YAML through imperative commands, you will simply run out of clock. Its scope overlaps heavily with CKA, so preparing them back to back pays off.

CKS — The Final Gate, Hands-On Security

CKS is widely considered the hardest of the five. The fact that a valid CKA is a prerequisite tells you something about the level.

DomainWeight
Minimize Microservice Vulnerabilities20%
Supply Chain Security20%
Monitoring, Logging and Runtime Security20%
Cluster Setup15%
Cluster Hardening15%
System Hardening10%

NetworkPolicy, least-privilege RBAC, Pod Security Standards, AppArmor and seccomp profiles, runtime sandboxes, Falco runtime detection, Trivy image scanning, SBOMs — the sheer breadth of tooling is what makes CKS hard.

Among all of them, NetworkPolicy is the one you must internalize.

# Classic CKS task — a default deny NetworkPolicy
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
  name: default-deny-ingress
  namespace: prod
spec:
  podSelector: {}
  policyTypes:
    - Ingress

An empty podSelector means "every Pod in the namespace," and Ingress and Egress are controlled separately — countless exam variations grow out of this one base pattern.

The Optimal Order — Why KCNA → CKAD → CKA → KCSA → CKS

There is no single right answer, but for a first-time challenger this sequence is the one to beat.

  1. KCNA — build the conceptual map, and experience the remote exam process with low stakes
  2. CKAD — the lowest barrier to entry among the hands-on exams; your kubectl speed gets forged here
  3. CKA — stack cluster operations and troubleshooting on top of the speed you built in CKAD
  4. KCSA — right before CKS, pre-learn the security concepts in theory form
  5. CKS — break through the final gate with everything in place

The logic rests on three points.

First, the difficulty rises like a staircase: theory → approachable hands-on → deep hands-on → security theory → security hands-on. There is no sudden wall.

Second, KCSA acts as a preview of CKS. You cover the same security domains twice — once in theory, once in practice — which compounds your study efficiency.

Third, it plays well with the validity window. All five must be active at once, so the final exam has to land within 24 months of the first. Starting with the easier exams keeps the early phase from slipping. If you already run clusters for a living, a variant that starts with CKA and defers CKAD works just as well.

Cost Optimization — Bundles, Member Discounts, Black Friday

At list price, all five cost $445 times three plus $250 times two — $1,835 in total. Almost nobody pays that.

For the record, the CKA fee was once $395 and now sits at $445, and the trend keeps pointing up. If you are going to earn these certifications eventually, buying during a sale is strictly better.

The Retake Policy and the killer.sh Simulator

Every CNCF exam purchase ships with two safety nets.

First, one free retake. If you fail the first attempt, you get another try within the 12-month eligibility window. Postponing your booking out of fear of failure is a strictly losing move.

Second, CKA, CKAD and CKS purchases include two killer.sh simulator sessions.

The recommended pattern: run session one about one to two weeks before the exam to expose weaknesses, patch them, then run session two as a final rehearsal two to three days out.

The Study Stack — KodeKloud, Killercoda, Official Docs

The proven combination looks like this.

# A local practice cluster — pick whichever you prefer
minikube start --nodes=2
# or
kind create cluster --name practice
kubectl get nodes -o wide

For the theory exams (KCNA and KCSA), repeated question drilling beats watching more lectures. The quiz tool on this blog, introduced below, is built exactly for that.

The Official Docs Bookmark Strategy

During the hands-on exams you may browse the kubernetes.io documentation (plus the Helm docs, and for CKS a defined set of security tool docs) through Firefox inside the remote desktop.

One important trap — it is not your own browser, so your carefully curated bookmarks do not exist there. The real strategy is therefore not bookmarks but these two habits.

# Try explain before digging through the docs — when a field name escapes you
k explain pod.spec.containers.securityContext
k explain deployment.spec.strategy --recursive
k explain networkpolicy.spec --recursive
k api-resources | grep -i policy

If you drill "which page holds what" into muscle memory during practice, a single search lands you on the right page in the exam.

The PSI Browser — Understanding the Exam Environment

CNCF hands-on exams run on the PSI proctoring platform, and this environment is what surprises first-timers the most.

Run the PSI system compatibility check ahead of time, and use a wired connection if you possibly can.

Exam Terminal Setup — Aliases and vim

Invest the first minute or two of the exam in environment setup. Recent exam environments often come with the k alias and completion preconfigured — verify first, then set up whatever is missing.

# k alias and completion — often preconfigured in recent exam environments, check first
alias k=kubectl
complete -o default -F __start_kubectl k

# Frequently used flags as environment variables
export do="--dry-run=client -o yaml"
export now="--force --grace-period 0"

You will edit YAML in vim, so add the minimal settings that prevent indentation accidents.

# ~/.vimrc — prevent YAML indentation accidents
cat <<'EOF' >> ~/.vimrc
set tabstop=2
set shiftwidth=2
set expandtab
set number
EOF

Bundle both into a "first 60 seconds routine" and repeat it identically in every practice session — on exam day your hands will run it on autopilot.

# The 60-second routine right after the exam starts
kubectl config get-contexts        # list available contexts
kubectl get nodes                  # confirm cluster connectivity
source <(kubectl completion bash)  # load completion
alias k=kubectl
complete -o default -F __start_kubectl k
export do="--dry-run=client -o yaml"

Time Management — Solving 17 Tasks in Two Hours

Doing the math for CKA: 120 minutes across 15-20 tasks (usually around 17) gives you six to seven minutes per task on average. But point values range from 4% to 13%, so playing to the average is a mistake.

# Never hand-type YAML from scratch — generate imperatively, then edit
k run web --image=nginx $do > pod.yaml
k create deployment api --image=nginx --replicas=3 $do > deploy.yaml
k expose deployment api --port=80 --target-port=8080 $do > svc.yaml
k create configmap app-config --from-literal=ENV=prod $do > cm.yaml

Imperative generation → save to file → edit only what needs changing in vim. That three-step move is the core time-management technique of the hands-on exams. For what it is worth, pure memorization accounts for <10% of what these exams test — the rest is hand speed and documentation fluency.

Remote Exam Caveats — From Room Scans to Your ID

Both the theory and hands-on exams are remotely proctored, and non-technical preparation can decide the outcome.

If this is your first rodeo, going through the whole procedure once with KCNA is an asset in itself.

A 6-12 Month Roadmap for Working Engineers

A standard plan assuming eight to ten hours per week (one hour on weekdays plus half a weekend day).

PhaseGoalFocus
Months 1-2Pass KCNAConcept study plus question drilling; experience remote proctoring
Months 3-5Pass CKADkubectl speed training, imperative commands, first killer.sh run
Months 6-8Pass CKACluster operations and troubleshooting; etcd backup and restore
Months 9-10Pass KCSAConsolidate security concepts; pre-learn the CKS syllabus
Months 11-12Pass CKSSecurity tool drills, final killer.sh run, apply for Kubestronaut

Experienced engineers can compress this into six months: start with CKA, take CKAD two to three weeks later, then finish KCSA and CKS in one continuous push.

One principle governs the whole schedule: finish the fifth exam before the first certification expires (24 months). Completing within 12 months leaves a comfortable buffer — and buying all the exams during the November Black Friday sale, then leaning on the 12-month eligibility window, solves cost and scheduling in a single move.

Kubestronaut Communities in Korea and Japan

The official CNCF page lists Kubestronauts by country, and the names from both Korea and Japan keep multiplying.

Korea has a strong meetup and study-group culture around cloud native. CNCF community group events and open chat study groups actively share pass reports and legitimate study materials, and posting a photo in the Kubestronaut jacket has become something of a rite of passage.

In Japan, the Cloud Native Community Japan (CNCJ) is the center of gravity. After the first KubeCon + CloudNativeCon Japan was held in Tokyo in 2025, certification momentum visibly surged, and the density of pass write-ups on Zenn and Qiita rivals any community in the world.

In both countries the exams are primarily English-based (some exams offer Japanese), so tips from the community on handling English question text are genuinely practical help.

Value in the Job Market — DevOps, SRE, Platform Engineering

A certification does not guarantee skill. But its signaling effect in the hiring market is real.

The point is to treat certifications not as the finish line but as the ticket that gets you to the interview table. Interviews ultimately probe your troubleshooting stories — and those stories accumulate naturally while you prepare for CKA and CKS.

Practice with the Kubestronaut Quiz Tool on This Blog

This blog ships a study tool built specifically for the Kubestronaut journey.

The Kubestronaut Quiz is a question bank of more than 772 questions spanning all five tracks — KCNA, KCSA, CKA, CKAD, CKS — plus Golden Kubestronaut scope.

The recommended usage: for the theory exams (KCNA and KCSA), repeated runs through this quiz alone can carry you to the pass mark. For the hands-on exams, use the quiz to expose conceptual gaps and pair it with real cluster practice. The kubectl Command Finder and the Linux Command Quiz for LFCS and Golden preparation combine well with it.

Closing — How to Reach Orbit

Kubestronaut is, in the end, a certification of consistency. None of the five exams demands genius, but making all five valid inside a 24-month window demands planning and persistence.

A final checklist.

Before you close this tab, book a KCNA slot. A rocket does not lift off when the fuel tank is full — it lifts off when the countdown starts.

References

Comments

No comments yet.

Sign in to leave a comment