Technology12 min read

FREE KCNA Exam Guide 2026: Kubernetes and Cloud Native Associate

Free 2026 KCNA guide covering the 60-question Linux Foundation exam, 90-minute limit, 75% passing score, $250 fee, CNCF domain weights, study plan, and practice strategy.

Ran Chen, EA, CFP®May 4, 2026

Key Facts

  • KCNA has 60 multiple-choice questions and a 90-minute time limit through Linux Foundation remote proctoring.
  • KCNA requires a 75% score to pass according to Linux Foundation multiple-choice exam policy.
  • The KCNA exam-only price is $250 USD, with optional Linux Foundation training bundles available separately.
  • KCNA certification is valid for 2 years after passing the Kubernetes and Cloud Native Associate exam.
  • Kubernetes Fundamentals is the largest KCNA domain, accounting for 44% of the published curriculum.
  • Container Orchestration accounts for 28% of KCNA and covers observability, networking, security, troubleshooting, and storage concepts.
  • Cloud Native Application Delivery accounts for 16% of KCNA and includes containerization, debugging, and delivery concepts.
  • Cloud Native Architecture accounts for 12% of KCNA and covers cloud native principles and CNCF ecosystem awareness.
  • Linux Foundation handbook materials state KCNA exam eligibility remains valid for 12 months from purchase.
  • KCNA candidates should verify PSI Bridge remote testing requirements before exam day and use concept-boundary drills for final review.

KCNA 2026: Pass by Learning the Boundaries Between Cloud Native Concepts

KCNA, the Kubernetes and Cloud Native Associate, is a Linux Foundation and CNCF certification for foundational Kubernetes and cloud native literacy. The exam has 60 multiple-choice questions, a 90-minute time limit, a 75% passing score, a $250 exam-only price, two-year credential validity, and online remote proctoring through PSI Bridge.

The most important thing to know is what KCNA is not. It is not CKA, CKAD, or CKS. You are not being asked to fix a live cluster in a terminal or produce perfect YAML under pressure. KCNA tests whether you understand the purpose, boundaries, and relationships among Kubernetes objects, container orchestration, observability, networking, storage, security, application delivery, and the CNCF ecosystem.

free KCNA practice questionsPractice questions with detailed explanations

2026 KCNA Facts to Anchor Your Plan

Item2026 Detail
CertificationKubernetes and Cloud Native Associate (KCNA)
BodyLinux Foundation / CNCF
Format60 multiple-choice questions
Time limit90 minutes
Passing score75%
Cost$250 USD exam only
DeliveryOnline remote proctoring through PSI Bridge
RetakeOne retake is listed on the product page
Eligibility windowLinux Foundation handbook materials state exam eligibility remains valid for 12 months from purchase
Validity2 years
PrerequisitesNone formally required
Experience levelFoundational to moderate

Policy and logistics sources worth reading before the last week include the Multiple Choice Exams FAQ, important instructions for multiple-choice exams, and the candidate handbook registration page.

The Four KCNA Domains as System Layers

KCNA has four published domains, but candidates understand them faster when they map them to layers of a cloud native system.

DomainWeightBoundary to Understand
Kubernetes Fundamentals44%What the core Kubernetes objects and control plane do, and how workloads are represented.
Container Orchestration28%How orchestration keeps workloads running through scheduling, networking, storage, security, observability, and troubleshooting.
Cloud Native Application Delivery16%How images, registries, containerization, debugging, CI/CD, and release patterns move software into runtime.
Cloud Native Architecture12%Why cloud native systems use automation, resilience, declarative configuration, community practices, and CNCF ecosystem categories.

Kubernetes Fundamentals is almost half the exam. Pods, nodes, deployments, replica sets, services, namespaces, labels, selectors, control plane components, scheduling, and basic administration language should become automatic. If those relationships are fuzzy, CNCF project names and DevOps vocabulary will not save the score.

What Most KCNA Guides Under-Explain

Many competitor pages list domain weights and then jump into a week-by-week schedule. The gap is that KCNA distractors usually test category boundaries. The wrong answer is often a real cloud native term that belongs to a different layer.

Build comparison pairs deliberately:

PairThe Boundary KCNA May Test
Pod vs. containerA pod is the smallest Kubernetes scheduling unit; a container is a runtime package inside that unit.
Deployment vs. replica setA deployment manages rollout and desired state; a replica set maintains replica count.
Service vs. ingressA service gives stable access to pods; ingress handles edge HTTP routing patterns.
ConfigMap vs. secretBoth externalize configuration; secrets are intended for sensitive values.
Logs vs. metrics vs. tracesLogs describe events, metrics quantify signals, and traces follow request paths.
Persistent volume vs. persistent volume claimA PV is storage capacity; a PVC is a workload's request for storage.
Image vs. registryAn image packages software; a registry stores and distributes images.
Runtime vs. orchestratorA runtime runs containers; an orchestrator coordinates workloads across infrastructure.

This boundary work is exam-specific. KCNA questions rarely require obscure command flags, but they often ask which concept fits a symptom, goal, or architectural need.

Hands-On Practice: Useful, But Not the Main Exam Skill

KCNA is multiple choice, not a terminal performance exam. Still, a small practice cluster can make the vocabulary stick. Create a namespace, run a pod, expose it with a service, change a deployment replica count, inspect logs, and look at a config map or secret. You are not doing this to memorize commands. You are doing it so the objects become concrete.

Stop before hands-on work consumes the study plan. If you spend most of your time debugging cluster installation or writing advanced YAML, you are drifting toward CKA or CKAD prep. For KCNA, the better question after every lab is: what problem did this object solve, and what is it not responsible for?

Study Sequence for 3 to 6 Weeks

Week 1 should be Kubernetes object relationships. Learn the control plane, worker nodes, pods, deployments, replica sets, services, ingress, namespaces, labels, selectors, config maps, secrets, scheduling, and desired state. Draw the relationships until you can explain them without notes.

Week 2 should be containers and orchestration. Review images, registries, runtimes, container versus virtual machine differences, service discovery, storage concepts, basic networking, and why orchestration exists. Keep asking what Kubernetes automates and what the user or team still owns.

Week 3 should cover observability, security, troubleshooting, and storage vocabulary. Know logs, metrics, traces, probes, common failure patterns, RBAC basics, secrets, network policy at a high level, persistent volumes, persistent volume claims, and storage classes.

Week 4 should connect application delivery and architecture. Study CI/CD flow, GitOps vocabulary, release strategies, image build and registry flow, container debugging, CNCF categories, community concepts, governance, resilience, automation, declarative configuration, and loose coupling.

KCNA practice questionsPractice questions with detailed explanations

Multiple-Choice Strategy for KCNA Distractors

KCNA gives 90 seconds per question. That is enough time if you recognize the tested layer quickly. On each stem, ask: is this about Kubernetes objects, orchestration behavior, application delivery, or cloud native architecture? Then eliminate answers from the wrong layer.

Example reasoning patterns matter more than memorized definitions. If the stem asks for stable network access to changing pods, service should rise above ingress, registry, or deployment. If the stem asks about repeatable rollout and rollback, deployment and release strategy should be in view. If the stem asks about durable data beyond pod lifetime, think storage and persistent volume vocabulary.

Build a glossary with three columns: term, problem solved, common distractor. A circular definition such as "a service is a Kubernetes service" is not enough. A score-ready definition starts with the operational problem.

Boundary Drills That Beat Memorization

A useful KCNA drill is to turn every practice miss into a boundary sentence. Do not write "I missed services." Write "I confused stable pod access with edge HTTP routing," or "I treated a registry problem like a deployment problem." That wording makes the next question easier to classify.

Use four columns in your miss log: stem clue, tested layer, correct concept, and tempting wrong layer. A stem clue might be "pods change IP addresses," the tested layer might be Kubernetes networking, the correct concept might be service, and the tempting wrong layer might be ingress or registry. Another clue might be "teams need repeatable release and rollback," pointing to deployment or delivery strategy rather than storage or observability.

This style is especially useful for CNCF ecosystem questions. Do not study project names as a flat list. Put them into purpose buckets: observability, networking, service mesh, runtime, registry, policy, security, GitOps, and storage. KCNA is more likely to reward knowing why a category exists than knowing a vendor-specific implementation detail.

Final 7-Day Review by System Layer

Use the last week to tighten boundaries, not to start a new Kubernetes course. Day one should be a timed mixed set. Day two should be Kubernetes Fundamentals only: control plane, nodes, pods, deployments, services, namespaces, labels, selectors, scheduling, and desired state. Day three should be orchestration behavior: networking, storage, observability, security, probes, troubleshooting, and keeping workloads running.

Day four should be application delivery: images, registries, containerization, debugging, CI/CD, release patterns, and GitOps vocabulary. Day five should be cloud native architecture: resilience, automation, declarative configuration, loose coupling, community, governance, and CNCF ecosystem categories. Day six should be missed-question remediation. Day seven should be logistics, ID, PSI Bridge check, and light review.

For every term in the final week, force one sentence that starts with the problem it solves. A service gives stable access to changing pods. A deployment manages rollout and replica state. Observability helps teams understand system behavior from signals. If the sentence starts with the term instead of the problem, the definition is probably still too circular.

Remote Testing Can Be the Unforced Error

Because KCNA is delivered online through PSI Bridge, logistics are part of readiness. Complete the system check well before test day. Confirm webcam, microphone, browser, network, identification, and single-monitor setup. Match the name on your Linux Foundation account to the government ID you will present.

Read the multiple-choice exam instructions before the final week. A candidate who is still solving room, monitor, or ID problems at check-in has already spent useful attention before question one.

Why Candidates Miss KCNA Questions

The first miss pattern is treating KCNA like a hands-on Kubernetes exam. Hands-on exposure helps, but the tested skill is conceptual selection. Do not spend the bulk of prep on command flags.

The second miss pattern is memorizing project names without categories. KCNA can ask what observability, service mesh, policy, registry, runtime, or GitOps tools are for. Name recognition without purpose is fragile.

The third miss pattern is weak Kubernetes Fundamentals. Because that domain is 44%, basic object relationships need more time than architecture buzzwords.

The fourth miss pattern is reading distractors as true-or-false statements. Two options may be true statements about cloud native systems, but only one answers the exact layer or problem in the stem.

Score-Ready Checklist and Next Certification Path

You are close when you can finish a 60-question mixed set in 75 minutes or less and explain every miss. Your final one-page comparison sheet should include pod, deployment, replica set, service, ingress, namespace, config map, secret, volume, persistent volume, persistent volume claim, RBAC, network policy, logging, metrics, traces, image, registry, runtime, CI/CD, GitOps, and service mesh.

After KCNA, choose the next step based on the work you want. For cluster administration, build terminal experience before CKA. For application delivery on Kubernetes, CKAD is the more direct follow-up. For security, CKS comes later after stronger administration experience. KCNA gives you the vocabulary to make that choice intelligently.

For job conversations, pair the credential with a small project. Deploy a simple app to a practice cluster, expose it with a service, add configuration, collect logs, and document what each resource does. That turns multiple-choice knowledge into evidence you can discuss.

PSI Bridge Final Check

KCNA is multiple choice, but the delivery environment can still cause failure. Linux Foundation exams are online proctored, so read the candidate handbook, test the PSI Bridge setup, verify ID requirements, clear the workspace, and check camera, microphone, network, and browser requirements before exam day. Do not discover a work laptop restriction or external-monitor issue during check-in.

Content readiness should also be boundary-based. If a question asks about observability, know whether the best answer is metrics, logs, traces, events, alerting, or service-level objectives. If it asks about networking, separate pod networking, services, ingress, DNS, network policy, and load balancing. If it asks about delivery, separate container image creation, registry use, deployment strategy, Helm, GitOps concepts, and troubleshooting.

The fastest final review is a concept-boundary grid, not another long Kubernetes tutorial.

Official Resources and Next Step

KCNA study guideFree exam prep with practice questions & AI tutor
Test Your Knowledge
Question 1 of 3

Which KCNA domain has the largest weight?

A
Cloud Native Architecture
B
Kubernetes Fundamentals
C
Cloud Native Application Delivery
D
Container Orchestration
Learn More with AI

10 free AI interactions per day

KCNAKubernetesCloud NativeCNCFLinux FoundationDevOps2026

Related Articles

Stay Updated

Get free exam tips and study guides delivered to your inbox.

Free exam tips & study guides. Unsubscribe anytime.