Bird
0
0

Given the following command run on a Kubernetes node:

medium📝 Command Output Q4 of 15
Kubernetes - Fundamentals
Given the following command run on a Kubernetes node:
systemctl status kubelet

What output indicates the kubelet is running correctly?
AActive: active (running) since ...
BActive: inactive (dead) since ...
CFailed to start kubelet.service: Unit not found.
DActive: activating (start) since ...
Step-by-Step Solution
Solution:
  1. Step 1: Interpret systemctl status output

    'Active: active (running)' means the service is up and running properly.
  2. Step 2: Exclude other states

    'inactive (dead)' means stopped, 'failed' means error, 'activating' means still starting.
  3. Final Answer:

    Active: active (running) since ... -> Option A
  4. Quick Check:

    Running kubelet status = Active: active (running) [OK]
Quick Trick: Look for 'active (running)' in systemctl output for healthy kubelet [OK]
Common Mistakes:
  • Confusing activating with running
  • Ignoring failed status
  • Assuming inactive means running

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes