Free daily set, then full-bank Pro when you want more
Question 1 of 10
Objective CKA-WS-10Workloads and Scheduling
A Pod should be allowed onto a node with a matching NoSchedule taint. What must the Pod include?
Correct Answer: C. A matching toleration
Concept tested: Workloads and Scheduling
A. × Incorrect: It does not affect scheduling decisions.
B. × Incorrect: A LoadBalancer Service has no impact on Pod placement.
C. ✓ Correct: A matching toleration allows the Pod to schedule onto a node with a corresponding taint.
D. × Incorrect: It is irrelevant to taint and toleration mechanisms.
Why this matters:This matters because understanding taints and tolerations ensures proper resource allocation and avoids scheduling conflicts in Kubernetes clusters.
Question 2 of 10
Objective seed.009Cluster Architecture, Installation, and Configuration
Which Kubernetes component is responsible for managing the lifecycle of Service Accounts within a cluster?
Correct Answer: A. controller manager
Concept tested: Cluster Architecture, Installation, and Configuration: It runs controllers that watch cluster state and move current state toward desired state
A. ✓ Correct: Controller manager because it runs controllers that watch for changes in the state of Service Accounts and ensures they are consistent with their desired state.
B. × Incorrect: Scheduler because it is responsible for assigning pods to nodes, not managing Service Account lifecycle.
C. × Incorrect: Etcd because it stores cluster data but does not manage the lifecycle of objects like Service Accounts.
D. × Incorrect: Kubelet because it runs on each node and manages containers, not Service Account lifecycle.
Why this matters:This matters because understanding which component manages specific Kubernetes resources ensures proper configuration and troubleshooting.
Question 3 of 10
Objective CKA-ST-06Storage
Two containers in the same Pod need temporary shared scratch space. Which volume type could fit?
Correct Answer: B. emptyDir
Concept tested: Storage
A. × Incorrect: It is used for defining an ingress resource to manage external access to the services in a cluster, not for providing temporary shared storage.
B. ✓ Correct: EmptyDir provides a temporary shared storage volume that is specific to each Pod and can be used by multiple containers within the same Pod.
C. × Incorrect: It is part of Kubernetes RBAC (Role-Based Access Control) and defines a set of permissions, not for providing storage.
D. × Incorrect: It is used in Service discovery for Services with type ExternalName or LoadBalancer, not for temporary shared storage.
Why this matters:This matters because understanding the correct volume types ensures efficient use of resources and meets specific application needs in Kubernetes environments.
Keep the momentum
You're 3 questions in. Want the full bank?
Unlock the full question set, timed exam mode, practice mode, saved progress, previous tests, and readiness scoring.
145 more questions, timed exam mode, and saved history are waiting in the full unlock.
Pro is active. Use the full bank, Exam mode, and saved box scores when you want deeper review.
Question 4 of 10
Objective CKA-TR-18Troubleshooting
If the Kubernetes API server is unavailable, what becomes unavailable for normal kubectl operations?
Correct Answer: C. The central Kubernetes API endpoint used to manage cluster objects
Concept tested: Troubleshooting
A. × Incorrect: It refers to a specific field in images, which is unrelated to kubectl operations.
B. × Incorrect: An application log line pertains to application-level issues, not Kubernetes API availability.
C. ✓ Correct: The central Kubernetes API endpoint is essential for kubectl to manage cluster objects and perform operations.
D. × Incorrect: It concerns Pod storage, which operates independently of the API server's availability.
Why this matters:This matters because understanding this helps in diagnosing and resolving issues quickly during critical operations.
Question 5 of 10
Objective CKA-SN-13Services and Networking
A StatefulSet needs stable DNS entries for individual Pods. Which Service pattern is commonly paired with it?
Correct Answer: A. A headless Service
Concept tested: Services and Networking
A. ✓ Correct: A headless Service provides stable DNS entries for individual Pods in StatefulSets.
B. × Incorrect: Namespace quota with no selectors does not affect Pod networking.
C. × Incorrect: LoadBalancer Services are used for external access, not internal StatefulSet communication.
D. × Incorrect: ClusterRoleBindings manage permissions, not network identities.
Why this matters:This matters because understanding the correct Service pattern ensures stable and reliable communication between StatefulSet Pods.
Question 6 of 10
Objective CKA-WS-01Workloads and Scheduling
What does a Deployment manage in Kubernetes?
Correct Answer: C. ReplicaSets and rolling updates for stateless application Pods
Concept tested: Workloads and Scheduling
A. × Incorrect: Deployments do not manage user certificates.
B. × Incorrect: Deployments do not handle PersistentVolume reclaim policies.
C. ✓ Correct: Deployments manage ReplicaSets and rolling updates for stateless application Pods.
D. × Incorrect: Deployments do not control external DNS zones.
Why this matters:This matters because the wrong choice changes how technicians or teams configure, troubleshoot, or support ReplicaSets and rolling updates for stateless application Pods.
Question 7 of 10
Objective CKA-CAIC-03Cluster Architecture, Installation, and Configuration
What is etcd used for in a Kubernetes cluster?
Correct Answer: B. It stores Kubernetes cluster data as a consistent key-value store
Concept tested: Cluster Architecture, Installation, and Configuration
A. × Incorrect: It refers to the function of the Kubernetes scheduler, which assigns pods to nodes.
B. ✓ Correct: Etcd stores cluster data as a consistent key-value store for reliable access and management.
C. × Incorrect: DNS resolution in Kubernetes is handled by CoreDNS or similar services, not etcd.
D. × Incorrect: Service traffic proxying is managed by the Kubernetes API server and kube-proxy.
Why this matters:This matters because understanding etcd's role ensures reliable cluster state management and data consistency.
Question 8 of 10
Objective CKA-ST-08Storage
What must be true for a PVC to be expanded using Kubernetes volume expansion?
Correct Answer: D. The StorageClass and volume plugin must support expansion
Concept tested: Storage
A. × Incorrect: Every Pod in the cluster being privileged has no direct impact on PVC expansion.
B. × Incorrect: A headless Service is not required for PVC expansion to work.
C. × Incorrect: All RoleBindings being cluster-scoped does not affect whether a PVC can be expanded.
D. ✓ Correct: The StorageClass and volume plugin must support expansion for it to be possible.
Why this matters:This matters because understanding this ensures you can manage storage resources effectively in Kubernetes environments.
Question 9 of 10
Objective CKA-TR-06Troubleshooting
If a Service has no endpoints, what should be checked?
Correct Answer: A. Whether the Service selector matches labels on ready Pods
Concept tested: Troubleshooting
A. ✓ Correct: Services route to endpoints derived from matching Pods.
B. × Incorrect: Running kubeadm init twice on a worker has no direct relation to Service endpoints.
C. × Incorrect: The PVC access mode does not affect Service routing or endpoints.
D. × Incorrect: An unrelated RBAC Role does not impact how Services route traffic.
Why this matters:This matters because understanding Service selectors ensures proper communication between services and pods in a cluster.
Question 10 of 10
Objective CKA-SN-03Services and Networking
A cloud-backed cluster should expose an app through a provider-managed external load balancer. Which Service type is designed for that?
Correct Answer: C. LoadBalancer
Concept tested: Services and Networking
A. × Incorrect: RoleBinding is used for granting permissions to users and service accounts.
B. × Incorrect: It is a controller that runs one-off tasks to completion.
C. ✓ Correct: LoadBalancer Services request provider load balancer integration, which is needed for exposing an app in a cloud-backed cluster.
D. × Incorrect: It is used for storing non-sensitive configuration data.
Why this matters:This matters because understanding the right Service type ensures proper exposure of applications in cloud environments.
Free preview complete
You've reached the free preview.
Go beyond sample questions with the full source-backed bank, objective practice, exam mode, saved progress, and readiness scoring.
155 verified questions are ready behind the full unlock.
Pro is active. Use the full bank, readiness score, and saved exams when you want deeper reps.
Ready to finish?Answer the questions, then submit your test for review.
Go Pro
Unlock the full CKA bank.
Get the full source-backed bank, timed exam mode, practice mode, saved progress, previous tests, and readiness scoring for this exam.
155 full-bank questionsEvery choice explainedExam Mode and Practice ModeQuestion sets and random testsReadiness score and trendsPrevious test box scores
You've answered 0/10 free questions today.
Locked: 145 more questions in the full bank.
Locked: exam simulation mode and end-of-exam review.
Today's free set refreshes soon. Upgrade to continue with the full bank.
Box scores, domain breakdowns, and full answer explanations for Pro exam attempts on this browser.
Today’s Set
10 questions
Daily set rotates at 10:00 AM local time
Progress
0/10
Answered on this page session
Accuracy
0%
Loading countdown…
7-day score keeper
Answer questions today and this will become a rolling 7-day scorecard.
Local history
Optional progress sync
Keep today’s practice moving
Guest progress saves automatically on this device. Add an email later when you want a magic link that keeps your daily CKA practice in sync across browsers.
Guest progress saves on this device automatically
155 verified questions are currently in the live bank. Questions updated at May 13, 2026, 2:47 AM CDT. The daily set rotates at 10:00 AM local time, and each explanation links back to the source used to write it. Use the web set for quick practice, then switch to the app when available for larger banks and deeper review.
Careers and fields this exam supports
CKA is aimed at operational Kubernetes roles where cluster administration, troubleshooting, and workload management show up in the real job.
Role examples: platform engineer, site reliability engineer, Kubernetes administrator, and DevOps engineer.
Where it shows up: container orchestration, platform operations, Kubernetes administration, and cloud-native infrastructure.
On-the-job payoff: the work is hands-on with clusters, workloads, scheduling, storage, and networking inside Kubernetes.
Typical next step: It pairs naturally with Linux, Terraform, and cloud architecture paths.
The fastest path is simple: answer the set, review the reasoning, then use the score history and source links to decide what to hit next.
Answer the free set first without looking anything up so the score reflects what is actually sticking.
Read every explanation, especially the wrong answer choices, so the weaker options stop looking plausible next time.
Open the linked source when a concept feels weak, then come back and repeat the question flow while the wording is fresh.
Use the 7-day score keeper, related cert links, and comparison pages to decide what to study next instead of guessing.
Move into Pro when you want the full bank, timed reps, readiness tracking, and previous-test review.
Official exam resources
Use these official Linux Foundation resources alongside the daily practice set. They cover the provider's own exam page, study guide, or prep material.
dotCreds builds CKA practice questions from Linux Foundation documentation and source-backed references, with official or primary sources preferred first. The questions are written for realistic study practice, not copied from exam dumps.
How are explanations sourced?
Each question includes a source-backed explanation and a link to the documentation or reference used to validate the answer. If an official page is too broad, dotCreds uses a reputable answer-level reference instead of pretending a generic page proves the answer.
What score do I get?
The page tracks today's answered count and accuracy for the 10-question daily set, then saves a 7-day score history on this device so you can see your recent practice trend.
Why use this site?
The site is the fastest way to start CKA practice without installing anything. It is built for daily recall, quick weak-topic discovery, and source-backed explanations you can review immediately.
Why use the app when available?
The web page is the quick free sampler. If a dotCreds app is available for CKA, the app is better for larger banks, focused weak-domain drills, longer review sessions, and mobile study routines.
Related practice tests
If you want another cert after CKA, these pages keep the same daily-question format with source-backed explanations.