Bird
0
0

You notice your Kubernetes cluster is overspending because pods are not scaling down after load decreases. Which is the most likely cause?

medium📝 Troubleshoot Q14 of 15
Kubernetes - Production Best Practices
You notice your Kubernetes cluster is overspending because pods are not scaling down after load decreases. Which is the most likely cause?
ACPU requests are set higher than limits
BResource <code>limits</code> are set too low
CPods have no <code>readinessProbe</code> configured
DThe Horizontal Pod Autoscaler has a high <code>minReplicas</code> value
Step-by-Step Solution
Solution:
  1. Step 1: Analyze autoscaling parameters

    A high minReplicas prevents scaling below that number, causing overspending.
  2. Step 2: Evaluate other options

    Low limits or readiness probes don't directly prevent scaling down; CPU requests > limits is invalid.
  3. Final Answer:

    The Horizontal Pod Autoscaler has a high minReplicas value -> Option D
  4. Quick Check:

    High minReplicas blocks scale down = A [OK]
Quick Trick: Check minReplicas to allow scaling down [OK]
Common Mistakes:
  • Confusing limits with requests
  • Ignoring minReplicas effect
  • Assuming readinessProbe affects scaling

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes