1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-30 05:13:59 +02:00
tldr/pages/common/kubectl-autoscale.md
Anand 9d4e368921
kubectl-{api-resources, autoscale}: add pages (#17758)
Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
2025-08-23 13:48:07 +03:00

572 B

kubectl autoscale

Create an autoscaler to intelligently scale pod count based on kubernetes cluster demands. More information: https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#autoscale.

  • Auto scale a deployment with no target CPU utilization specified:

kubectl autoscale {{[deploy|deployment]}} {{deployment_name}} --min={{min_replicas}} --max={{max_replicas}}

  • Auto scale a deployment with target CPU utilization:

kubectl autoscale {{[deploy|deployment]}} {{deployment_name}} --max={{max_replicas}} --cpu-percent={{target_cpu}}