Bird
0
0

Which resource configuration and QoS class combination achieves this?

hard📝 Best Practice Q15 of 15
Kubernetes - Resource Management
You want to ensure a pod gets guaranteed CPU and memory resources but also allow it to burst beyond the requested amount when available. Which resource configuration and QoS class combination achieves this?
ASet no requests or limits; QoS class BestEffort
BSet requests equal to limits; QoS class Guaranteed
CSet requests less than limits; QoS class Burstable
DSet limits less than requests; QoS class Burstable
Step-by-Step Solution
Solution:
  1. Step 1: Understand resource guarantees and bursting

    Guaranteed QoS requires requests equal to limits, which means no bursting beyond limits. Burstable allows requests less than limits, enabling bursting.
  2. Step 2: Match configuration to desired behavior

    Setting requests less than limits gives minimum guaranteed resources with ability to burst, which is Burstable QoS.
  3. Final Answer:

    Set requests less than limits; QoS class Burstable -> Option C
  4. Quick Check:

    Burstable = guaranteed minimum + burst capacity [OK]
Quick Trick: Burstable = requests less than limits for bursting [OK]
Common Mistakes:
  • Choosing Guaranteed which disallows bursting
  • Setting limits less than requests (invalid)
  • Assuming BestEffort provides guarantees

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes