Kubernetes Horizontal Pod Autoscaling and Resource Quota

5/21/2020

Does the resource quota take into account the pods created by the HPA (Horizontal pod autoscaler) ?

If the new created pods have Resquests and Limits superior to the Quota are they evicted?

Regards

-- Rayden Wins
horizontalpodautoscaler
hpa
kubernetes
quota
resources

1 Answer

5/22/2020

When The HPA is triggered new pods are scheduled to be created while resources allocation if they exceed the any quota they will get 403 FORBIDDEN with a message explaining the constraint that would have been violated from the api server and wont be scheduled.

-- Hiteshwar Sharma
Source: StackOverflow