Common Preparation · Exam day

Exam Day — Proctoring & Environment

Every credential on this ladder — KCNA, KCSA, CKA, CKAD, and CKS — is delivered the same way: from your own machine, wherever you can find a door that closes, watched live by a remote proctor through your webcam and microphone. That one fact means the two most common ways to lose an attempt have nothing to do with Kubernetes at all: an ID that doesn't quite match your registration, a second monitor still plugged in behind the desk, a system check run for the first time twenty minutes before the slot instead of a week before it. This page is the logistics half of your preparation — the system check, the ID rule, the room and desk scan, the check-in queue, and exactly how the environment behaves once you're in, because a multiple-choice screen (KCNA, KCSA) and a live terminal against a real cluster (CKA, CKAD, CKS) are proctored almost identically and then hand you completely different rooms. Read it once now, and again the week before you sit.

☺ Explain it like I'm 10

Picture two different home tests, both watched the same way. A person joins your video call, checks your ID against your face, and asks you to slowly turn your camera around the whole room so they can see nothing is hidden — no notes, no second screen, no snacks with wrappers on them. Once that part is done, the actual test begins, and it's one of two totally different things. Sometimes it's a stack of multiple-choice questions, like a quiz with the textbook closed. Sometimes it's a real, live computer cluster with something broken inside it, and you get two hours to fix as much of it as you can while that same person keeps watching. Same check-in gate either way, two very different rooms behind it — and almost nobody fails because of what's behind the door. They fail because of something at the gate.

🐢🦊Your hosts for this topic: Timmy the Turtle & Foxy — Timmy has the checklist memorized and won't let a rule surprise you, and Foxy is the instinct that fires the instant something on screen looks wrong, which is exactly the skill exam day sometimes asks for.

One proctoring script, two exam bodies

☺ Like you're 10: The security check before the clock starts is nearly the same for all five exams. What happens after the proctor lets you in is not.

The Linux Foundation runs its whole Kubernetes certification catalogue through a single identity-and-proctoring pipeline — currently PSI, at the time of writing. That is genuinely useful to you: booking, the ID rule, the room, the desk, check-in, and the proctor's authority over conduct are essentially identical whether you're sitting the associate-tier KCNA, the security-flavored KCSA, or the hands-on CKA, CKAD, and CKS. What differs is everything that happens after the proctor releases the exam: the interface, the permitted resources, and how the result is graded.

AspectShared by all five examsWhere it splits
DeliveryOnline, from your own machine, remote-proctored with a live webcam, microphone, and screen share
IdentityOne government-issued photo ID, checked live against your face, spelled exactly as your registration spells it
Room & deskPrivate room, a cleared desk, a single monitor, a room scan before release
Check-inLaunch from the Linux Foundation portal ahead of your slot; system check, ID check, room scan, then a queue for a proctor
FormatKCNA / KCSA: multiple-choice questions, no cluster in sight. CKA / CKAD / CKS: a browser-based Linux remote desktop with a terminal against live clusters
DurationKCNA / KCSA: ~90 minutes. CKA / CKAD / CKS: 2 hours
DocumentationKCNA / KCSA: closed-book — nothing is permitted. CKA / CKAD / CKS: a narrow, exam-specific allowlist (see below)
Graded onKCNA / KCSA: your selected answers. CKA / CKAD / CKS: the resulting cluster state
NavigationKCNA / KCSA: flag, go back, and a review screen before you submit. CKA / CKAD / CKS: jump between tasks freely, flag for review
◆ Key idea

Rehearse the shared half once and it covers you for every one of these five exams, plus every other Linux Foundation credential you ever sit — Platform Engineering's CNPE/CNPA exam-day page is proctored on the identical pipeline, and its treatment of the remote-desktop clipboard mechanics is worth reading if you're working both ladders. Rehearse the different half separately for each exam you sit, because that is where the actual traps live.

The week before: the system check, your ID, and the eligibility clock

☺ Like you're 10: Test your camera, microphone, and internet a week early, not on the day. And double-check your ID matches your account, letter for letter.

The Linux Foundation portal offers a system-compatibility check before you ever book a slot. Run it the week before, on the exact machine, in the exact room, on the exact network you intend to use — then run it again the night before. Running it for the first time twenty minutes before your slot is how people discover their webcam driver broke in an OS update, or that a locked-down work laptop's endpoint security blocks the proctoring client outright.

Raw bandwidth is rarely the problem; stability is. A remote desktop is an interactive stream — every keystroke is a round trip — so a connection that stutters for a few seconds every couple of minutes will cost you more than a slow-but-steady one. These commands touch nothing exam-related; they just tell you what your own link actually does at the time of day you've booked:

# run this about a week out, then again the night before, at your actual exam time
ping -c 30 8.8.8.8

curl -o /dev/null -s -w 'dns=%{time_namelookup}s connect=%{time_connect}s tls=%{time_appconnect}s total=%{time_total}s\n' https://kubernetes.io/docs/

# sample stability across a window as long as the exam itself, not a few seconds
for i in $(seq 1 900); do
  date +%H:%M:%S
  ping -c 1 -W 2 8.8.8.8 2>/dev/null | grep -o 'time=[0-9.]*' || echo DROPPED
  sleep 2
done | tee ~/k8s-exam-link-check.log

grep -c DROPPED ~/k8s-exam-link-check.log

If that drop count isn't zero, fix it before exam day: plug into ethernet, move closer to the router, or move the slot to a quieter hour. On the day itself, close every other application, pause cloud sync and OS updates, and ask your household to stay off video calls for the window.

The identity rule is the same across the whole Linux Foundation catalogue, and it's binary — there is no appeal at check-in. Your ID must be government-issued (a student card or employee badge doesn't count), must carry a photo and a signature (with one carve-out: government-issued biometric IDs without a signature are accepted), must be currently valid, and the name on your Linux Foundation profile must match it exactly — in the ID's own script. If your passport reads in Kanji or Chinese characters, your profile entry needs to as well; romanising it to "help" is exactly what manufactures the mismatch that turns candidates away who otherwise had everything in order. Full detail lives in the Linux Foundation's own Candidate Identification and Authentication policy.

Separately, keep two clocks straight: an eligibility window that starts the moment you purchase the exam (how long you have to schedule and sit it, including any retake) and a certification validity period that starts the day you pass. Both figures are published on each exam's own page and both have been revised more than once across the CNCF programme — confirm them at checkout rather than trusting a number from any third-party site, this one included.

⚠ Do this today, not on exam day

Open your Linux Foundation profile and your physical ID side by side right now and compare them character by character, including middle names, diacritics, and the expiry date. If anything differs, raise it with Linux Foundation support immediately — a name correction can take days to process, and it is a far worse morning to discover the mismatch at check-in.

The room, the desk, and the room scan

☺ Like you're 10: An empty table, a room with a door you can close, nobody else inside, and a slow camera tour so the proctor can see nothing is hidden.

The environment rules exist to make cheating hard, and the proctor enforces them literally rather than reasonably — the good news is that they're easy to satisfy if you prepare the room the night before instead of improvising at check-in. Your room needs to be private, with a door you can close — not a café, not an open-plan office, not a car — and nobody else may enter for the whole session, even briefly. It needs to be well lit with your face clearly visible (a bright window directly behind you turns you into a silhouette, and you'll be asked to move), and quiet, because the microphone stays live the entire time.

Typically permittedTypically not permitted
Your computer, one keyboard, one mouse, and one displayA second monitor — unplug it and turn it away; "it's switched off" is often not accepted
Your physical ID documentNotes, printouts, sticky notes, a whiteboard in view
A drink in a clear, label-free container, if your handbook permits itPhones, smartwatches, fitness bands, earbuds
Declared, prescribed medical itemsHeadphones and headsets, in most policies
Glasses (you may be asked to remove and show them)Food, snacks, anything with visible packaging or text
Nothing else on the desk surface, honestlyPens and blank paper — the exam supplies its own on-screen notepad

That last row surprises even experienced engineers: physical scratch paper is not permitted. If your study habit is to sketch a manifest on paper before typing it, break that habit before exam day — for CKA, CKAD, and CKS the in-exam notepad is your only scratch space, and there is no equivalent at all for KCNA or KCSA.

Before the exam is released, the proctor asks for a slow 360° pan of the room: the desk surface and underneath it, the walls, the ceiling, and often the front and back of your monitor. Make it fast by making it boring — clear the desk the night before, take anything readable off the walls, put your phone in another room, and rehearse the pan once so you aren't fumbling live on camera.

Check-in, the queue, and the timeline

☺ Like you're 10: Start check-in about thirty minutes early. It's a queue, not a door — and none of that time counts against your exam clock, so being early is completely free.

Check-in typically opens thirty minutes before your scheduled start, and you should use all of it: launch from the portal → the proctoring client runs a system and network check and asks for camera, microphone, and screen-share permissions → you're placed in a queue for a proctor → identity verification → the room and desk scan → the proctor confirms the rules and releases the exam → the timer starts. The queue is the part people forget about — at busy times you may wait, and that wait is on the proctor's side of the clock, not yours, which is precisely why starting at T-minus-30 rather than T-minus-5 is the difference between a calm start and a frantic one.

T−1 week system check ID vs profile T−1 night clear the desk unplug monitor 2 T−30 min launch check-in check-in ID · room scan proctor queue T−0 timer starts after results email none of this consumes exam time — being early is free the clock

Plan for no scheduled breaks, and assume the clock never stops. Some exams permit a short unscheduled break, but where they do it's on your time, must be cleared with the proctor first, and typically triggers re-verification — sometimes another room scan. Handle the practicalities before check-in: use the bathroom, have your permitted drink already on the desk, and don't load up on coffee an hour beforehand.

⚠ What gets a session flagged or terminated

Leaving the camera's view without permission · someone else entering the room · talking, or reading questions aloud · looking away from the screen repeatedly · a phone, watch, or second screen coming into view · covering the camera or microphone · another application or browser window open · visiting a site that isn't on the allowlist · attempting to copy exam content anywhere outside the exam. The exam is confidential — recording it, photographing it, or discussing specific questions or tasks afterward is a conduct violation, not a grey area.

Once you're in: how the two screens differ

☺ Like you're 10: One screen looks like a quiz with buttons for next, previous, and flag. The other looks like a real computer with a black terminal window and a list of jobs to do.

This is where the two formats stop resembling each other at all. Rehearse the layout you'll actually see, because fumbling the interface in the first five minutes is pure waste either way.

KCNA / KCSA Question 24 of ~60 "Which component watches the API server and starts container images on a node?" A. kube-scheduler B. kubelet C. kube-proxy D. etcd ◀ previous · flag ⚑ · next ▶ review screen appears before submit CKA / CKAD / CKS Task 6 of 17 "Expose the checkout Deployment on port 8080" run context-switch command first docs: kubernetes.io only (+ curriculum allowlist, see below) $ kubectl config use-context c1 $ k expose deploy checkout \ --port=8080 $ k get svc checkout ctrl+shift+v to paste Notepad on-screen only — no paper Task navigator jump tasks · ⚑ flags graded on the cluster's end state, not your keystrokes

For KCNA and KCSA, that's the entire interface: a question, four options, previous/next, a flag control, and a review screen listing every question's answered/unanswered/flagged state before you submit. There is no terminal, no cluster, and — worth repeating — no documentation of any kind. Never leave a question blank; nothing published indicates a penalty for a wrong answer, so an educated guess always beats a guaranteed zero.

For CKA, CKAD, and CKS, the browser gives you a Linux remote desktop containing a terminal and a browser, connected to one or more live clusters, plus a task pane, an on-screen notepad, and a task navigator for jumping around and flagging items. Two habits are worth drilling until they're reflex. First, run the context-switch command printed with every task before you touch anything else — solving a task perfectly against the wrong cluster scores zero, and it's the single most repeated regret in candidate write-ups. Second, verify before you move on: a fifteen-second kubectl get or rollout status catches the typo that would otherwise silently cost you the whole task.

Inside that remote desktop, clipboard shortcuts are Ctrl+Shift+C and Ctrl+Shift+V rather than the plain Ctrl+C/Ctrl+V your terminal already claims for something else — and pasted YAML will stagger under vim's auto-indent unless you turn it off first or skip the editor with a quoted heredoc. That mechanic is identical to the CNPE, because both run on the same remote-desktop product; Platform Engineering's exam-day page walks the exact keystrokes and a working .vimrc if you want the full drill.

The documentation allowlist is narrower than most candidates expect, and it differs by exam rather than being one fixed list. kubernetes.io/docs, including its translations, is permitted for all three performance exams — CKA and CKAD additionally permit helm.sh/docs, and CKS additionally permits the security-tooling docs its own curriculum names (Falco, etcd, Cilium, and Istio, at the time of writing). Search on a permitted site is fine; following a link off it is not, and there is no "extra tab" allowance to spend regardless of exam. Confirm the exact row for your exam on the official Resources Allowed page before you sit — this list is exactly the kind of thing that gets revised.

🐢 Timmy's dress rehearsal · 30 min

One week out, run the whole thing as theatre. Clear the desk exactly as you will on the day, unplug the second monitor, put your phone in another room. Set a timer for your exam's real duration. If you're prepping CKA, CKAD, or CKS, open only kubernetes.io/docs (plus helm.sh if that's your exam) and a terminal, close every other tab, and work through a mock task list under those constraints — notepad only, no paper. If you're prepping KCNA or KCSA, close every tab entirely and answer a full mock paper cold. You aren't practising Kubernetes here — you're practising the conditions, so the only unfamiliar thing on your screen on the actual day is the content itself.

When it misbehaves

☺ Like you're 10: If your internet blips or the person watching says something, don't panic — stop, listen, and reconnect. Your progress usually isn't the thing at risk. Your time is.

It happens, and for all five exams it's survivable if you know what to expect instead of guessing under pressure.

What happensWhat you do
The proctor messages you in chat or speaks over audioStop typing, read or listen immediately, and comply without arguing. Most queries are "please move back into frame" or "re-scan the desk," not an accusation.
Your connection drops mid-examReconnect immediately from the same portal link. For CKA/CKAD/CKS your applied cluster state is untouched — it lives on the exam provider's infrastructure, not your laptop. For KCNA/KCSA your answered questions are saved as you go. Either way, the timer does not pause for you.
The remote desktop freezes but the proctor call stays upSay so out loud rather than guessing whether to refresh — the proctor can often see the same freeze and will guide you through the fix
You genuinely can't get back inContact Linux Foundation support immediately, not the next morning — a report made minutes after the incident with exact timestamps is taken far more seriously than one made later
A permitted page's content links somewhere off the allowlistDon't follow it. The Important Instructions say plainly that permitted sites may link elsewhere and that visiting those links is prohibited regardless
🦊 Foxy's-eye view

"My connection dropped nine minutes into a CKA mock run at minute sixty-something of the real thing later that month — same feeling both times, that lurch of 'did I just lose everything.' I hadn't. The cluster doesn't live in my laptop's RAM; it's sitting on their infrastructure being graded on whatever state I already pushed to it. What I actually lost was about ninety seconds of clock while I relaunched from the portal link and got re-verified. The panic cost me more time than the disconnect did — which is exactly why I drill for it now instead of hoping it never happens."

What's true today — and what only the official page can tell you

☺ Like you're 10: The numbers below are generally accurate right now, but this site isn't the Linux Foundation — always check the real page before you pay for anything.

This course is an independent, unofficial study resource and is not affiliated with the CNCF or the Linux Foundation. Format and rough duration are stable enough to plan around; price, exact task or question counts, and retake terms move more often and are deliberately not repeated here as fixed numbers.

ExamFormatDurationPass mark (generally published)
KCNAMultiple choice, closed-book~90 minutes~75%
KCSAMultiple choice, closed-book~90 minutes~75%
CKAPerformance-based, live clusters2 hours~66%
CKADPerformance-based, live clusters2 hours~66%
CKSPerformance-based, live cluster, requires an active CKA2 hours~67%

One free retake has historically been bundled with each of these exams, and pass/fail results are typically emailed within a day or so of finishing — performance exams (CKA/CKAD/CKS) are graded after the fact against the cluster's end state, so nothing appears on screen the moment you click finish. None of that is a promise from this page.

⚠ Verify officially before you book

Proctoring provider, system requirements, ID policy, permitted desk items, break policy, documentation allowlist, price, retake terms, and results turnaround are all revised over time. Confirm current details on the official Linux Foundation training site and the CNCF certification pages before you register, and read the candidate handbook in your LF portal end to end — it is the only authority, and if anything here disagrees with it, it is right and this page is stale. If you're working toward the full Golden Kubestronaut ladder beyond this course's five, the same proctoring rules on this page apply to every one of those exams too.

🎬 The night before
👺

Gizmo: Leave the second monitor plugged in — just switch it off. Nobody scans behind the desk. 😈

🐢

Timmy: They scan behind the desk. "It was switched off" is a sentence people say right before their session gets terminated. Unplug it and put it in another room.

🦊

Foxy: Okay, real question — what actually happens to my CKA cluster if my wifi drops at minute sixty?

🤖

Recon the Robot: Nothing happens to it. The cluster's state lives on their infrastructure, not your laptop — I don't stop reconciling just because your webcam did. Reconnect from the same link and pick up where you left off. The clock's the only thing that doesn't wait for you.

👺

Gizmo: Fine. But for KCNA, if a question stumps you, just leave it blank and come back — saves the guessing.

🐰

Remy: Never blank. A guess after eliminating two options beats a guaranteed zero every single time. Flag it, guess, move — you can always change it before the review screen.

🐢

Timmy: Check in at T-minus-30, not T-minus-5. Slow is smooth. Smooth is passing.

None of this is the hard part — the hard part is the actual Kubernetes, and this page is the cheapest hour you'll spend on the whole journey to protect it. Work through the exam-prep checklist, follow the study method in how to study for a CNCF exam, drill recall with flashcards and the self-check quiz, and confirm every volatile number on the exam's own official page before you book.

🐢 Timmy's checkpoint

1. Name the four things your ID must satisfy at check-in. 2. How early should you start check-in, and why does it cost you nothing? 3. Name three items that are typically permitted on the desk, and three that typically aren't. 4. What is the documentation allowlist for KCNA/KCSA — and how does the CKA/CKAD allowlist differ from the CKS allowlist? 5. Your connection drops at minute 60 of the CKA — what happens to your work, and what happens to the clock? 6. What is the first command you should run at the start of every CKA/CKAD/CKS task? 7. Should you ever leave a KCNA question blank?

Check your answers
  1. Government-issued, carries a photo and a signature (biometric government IDs without a signature are an accepted exception), is currently valid, and its name matches your registration exactly, in the ID's own script — Kanji stays Kanji, Chinese characters stay Chinese characters, no romanised substitute.
  2. About thirty minutes before your slot. Check-in — system check, proctor queue, ID, room scan — happens entirely before the timer starts, so time spent there is free, while arriving late can cost you the whole attempt.
  3. Permitted: your computer with one monitor, your physical ID, a declared prescribed medical item, a clear label-free drink if allowed. Not permitted: a second monitor even if switched off, phones or smartwatches, notes or paper, food with visible packaging.
  4. KCNA/KCSA are closed-book — no documentation of any kind. CKA and CKAD both permit kubernetes.io/docs plus helm.sh/docs; CKS permits kubernetes.io/docs plus its own security-tooling docs (Falco, etcd, Cilium, Istio, at the time of writing) — not the same list.
  5. Your applied cluster state persists — it's graded on infrastructure that isn't your laptop — but the timer keeps running. Reconnect immediately from the same portal link and expect possible re-verification.
  6. The kubectl config use-context … line printed with the task. Solving a task perfectly against the wrong cluster scores zero.
  7. No. Nothing published indicates a penalty for a wrong answer, so an educated guess always beats a guaranteed-zero blank — flag it and move if you're unsure, then use the review screen.