Bird
0
0

What QoS class will Kubernetes assign to a pod with this resource spec?

medium📝 Predict Output Q5 of 15
Kubernetes - Resource Management
What QoS class will Kubernetes assign to a pod with this resource spec?
resources:
  requests:
    cpu: '300m'
  limits:
    cpu: '300m'
    memory: '512Mi'
AGuaranteed
BBestEffort
CBurstable
DInvalid
Step-by-Step Solution
Solution:
  1. Step 1: Check resource requests and limits

    CPU requests and limits are equal, but memory has limit only, no request.
  2. Step 2: Determine QoS class

    Because not all resources have equal requests and limits, Kubernetes assigns Burstable.
  3. Final Answer:

    Burstable -> Option C
  4. Quick Check:

    Partial requests and limits equality = Burstable [OK]
Quick Trick: All resources must match requests and limits for Guaranteed [OK]
Common Mistakes:
  • Assuming Guaranteed when only some resources match
  • Thinking missing requests cause invalid spec
  • Confusing BestEffort with Burstable

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes