KCNA Kubernetes Fundamentals Practice Question
Which kubectl command would you use to view detailed information about a specific pod, including events and container status?
⚠ Common exam trap
CNCF often tests the distinction between `kubectl get` (summary) and `kubectl describe` (detailed with events), expecting candidates to know that only `describe` surfaces the event stream and container state transitions needed for troubleshooting.
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
✓
kubectl describe pod <pod-name>
`kubectl describe pod <pod-name>` provides a comprehensive view of a pod's metadata, spec, status, conditions, container resource usage, and a chronological list of events (e.g., scheduling, pulling images, container restarts). This command aggregates information from the Kubernetes API server, including the pod's current state and lifecycle events, which is essential for debugging pod failures or unexpected behavior.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
kubectl explain pod
Why it's wrong here
This command shows documentation about the pod resource, not information about a specific pod.
- ✗
kubectl get pod <pod-name>
Why it's wrong here
This command shows a summary of the pod, but not detailed information like events.
- ✗
kubectl logs pod <pod-name>
Why it's wrong here
This command retrieves logs from the pod's containers, not detailed pod information.
- ✓
kubectl describe pod <pod-name>
Why this is correct
This command provides a detailed description of the pod including events and container statuses.
Go deeper
Related to this question
About these practice questions
One of 833 original KCNA practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. 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.