Difficulty: Advanced
How does the Horizontal Pod Autoscaler (HPA) work?
HPA automatically scales the number of Pods in a Deployment based on observed CPU utilization. It queries the Metrics Server periodically and uses the formula: `Desired Replicas = Current Replicas * (Current Metric / Target Metric)`.
Autoscaling, Metrics, CPU/Memory, Metrics Server