How to turn off autoscaling in Kubernetes with the kubectl command?
When you autoscale, it creates a HorizontalPodScaler. You can delete it by: kubectl delete hpa NAME-OF-HPA. You can get NAME-OF-HPA from: kubectl get hpa.
When you autoscale, it creates a HorizontalPodScaler. You can delete it by: kubectl delete hpa NAME-OF-HPA. You can get NAME-OF-HPA from: kubectl get hpa.
Update: 2019-03-11 First of all thanks for those who have upvoted this answer over the years. Please be aware that this question was asked in August 2013, when Docker was still a very new technology. Since then: Kubernetes was launched on June 2014, Docker swarm was integrated into the Docker engine in Feb 2015, Amazon … Read more