KCNA Kubernetes Fundamentals Practice Question
What does the 'kubectl get pods' command display?
⚠ Common exam trap
The exam often tests the distinction between 'get' (list/summary) and 'describe' (detailed info), so candidates mistakenly think 'get pods' shows detailed pod information.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
A list of all pods in the current namespace
The 'kubectl get pods' command lists all pods in the current namespace, providing a summary of their status, restarts, and age. This is the default behavior without specifying a namespace or pod name, making it the primary command for pod discovery and health checks.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Detailed information about a specific pod
Why it's wrong here
kubectl describe pod provides detailed info.
- ✓
A list of all pods in the current namespace
Why this is correct
kubectl get pods lists pods with name, ready status, and other columns.
- ✗
The YAML definition of a pod
Why it's wrong here
kubectl get pod <name> -o yaml displays the YAML.
- ✗
The logs of all pods
Why it's wrong here
kubectl logs fetches logs for a specific pod.
Go deeper
Related to this question
About these practice questions
This KCNA question is part of Courseiva's 833-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This KCNA practice question is part of Courseiva's free CNCF certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the KCNA exam.