Bird
0
0

Identify the error in this pod resource specification that prevents it from being classified as Guaranteed:

medium📝 Debug Q6 of 15
Kubernetes - Resource Management
Identify the error in this pod resource specification that prevents it from being classified as Guaranteed:
resources:
  requests:
    cpu: '1000m'
    memory: '512Mi'
  limits:
    cpu: '500m'
    memory: '512Mi'
AMemory request is missing
BCPU limit is less than CPU request
CLimits are missing for memory
DRequests and limits are equal
Step-by-Step Solution
Solution:
  1. Step 1: Compare CPU requests and limits

    CPU request is 1000m but limit is only 500m, which is invalid for Guaranteed.
  2. Step 2: Understand Guaranteed QoS requirements

    Guaranteed requires requests and limits to be equal and limits not less than requests.
  3. Final Answer:

    CPU limit is less than CPU request -> Option B
  4. Quick Check:

    Limits must be >= requests for Guaranteed [OK]
Quick Trick: Limits must not be less than requests for Guaranteed [OK]
Common Mistakes:
  • Ignoring that limits must be >= requests
  • Assuming missing memory request is error
  • Confusing requests and limits roles

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes