Bird
0
0

In the output below:

medium📝 Command Output Q4 of 15
Kubernetes - Pods
In the output below:
NAME       READY   STATUS    RESTARTS   AGE
example-pod 2/2     Running   1          10m

What does the '2/2' under READY indicate?
ATwo Pods are running in the namespace
BTwo containers are running and ready inside the Pod
CTwo nodes are ready to schedule the Pod
DTwo restarts have occurred for the Pod
Step-by-Step Solution
Solution:
  1. Step 1: Understand READY column meaning

    The READY column shows how many containers in the Pod are ready versus total containers.
  2. Step 2: Interpret '2/2'

    '2/2' means both containers in the Pod are ready and running.
  3. Final Answer:

    Two containers are running and ready inside the Pod -> Option B
  4. Quick Check:

    READY shows container readiness, not Pods or nodes [OK]
Quick Trick: READY shows ready containers over total containers [OK]
Common Mistakes:
  • Confusing READY with number of Pods or nodes
  • Assuming READY indicates restarts
  • Thinking READY shows total Pods in namespace

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes