Bird
0
0

Given this pod spec snippet:

medium📝 Command Output Q4 of 15
Kubernetes - Resource Management
Given this pod spec snippet:
resources:
  requests:
    cpu: "300m"
  limits:
    cpu: "600m"

What is the maximum CPU the pod can use?
A300 millicores
B600 millicores
C900 millicores
DUnlimited CPU
Step-by-Step Solution
Solution:
  1. Step 1: Identify CPU limit value

    The CPU limit is set to 600m, which means 600 millicores or 0.6 CPU cores.
  2. Step 2: Understand CPU usage cap

    The pod can use CPU up to the limit, which is 600 millicores, not the request.
  3. Final Answer:

    600 millicores -> Option B
  4. Quick Check:

    CPU max usage = CPU limit = 600m [OK]
Quick Trick: CPU limit is the max CPU pod can use [OK]
Common Mistakes:
  • Confusing CPU request with limit
  • Adding request and limit values
  • Assuming unlimited CPU usage

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes