Autoscaling components for Kubernetes
Find a file
Kubernetes Prow Robot 42e34da738
Merge pull request #9368 from walidghallab/asn-3
Get rid of CapacityBuffersFakePodsRegistry.
2026-03-19 21:16:35 +05:30
.github Merge pull request #9359 from x0rw/ci/ignore-docs-vpa 2026-03-19 19:46:33 +05:30
addon-resizer add raywainman to addon-resizer approvers 2024-12-02 19:57:48 +00:00
balancer fix: deprecated import of cacheddiscovery 2025-11-20 16:13:21 +03:00
builder update builder Dockerfile to go 1.25 2026-02-05 11:48:28 -08:00
cluster-autoscaler Merge pull request #9368 from walidghallab/asn-3 2026-03-19 21:16:35 +05:30
hack Add warning explaining why boilerplate validation may fail for files introduced in 2026 year. 2026-02-23 10:03:47 +00:00
multidimensional-pod-autoscaler Fixed the TOC of Multi-dimensional Pod Autoscaler AEP. 2024-01-10 13:07:47 +05:30
vertical-pod-autoscaler Merge pull request #9342 from omerap12/issue-9304 2026-03-10 15:07:11 +05:30
.gitignore Modify the e2e local scripts so they can be run on a modern Mac 2024-11-04 08:22:53 +02:00
.pre-commit-config.yaml fix(ca): Fix pre-commit hook trigger and make update-faq-flags script portable 2026-03-03 11:41:59 +08:00
code-of-conduct.md Add code-of-conduct.md 2017-12-20 13:31:27 -05:00
CONTRIBUTING.md Update go wiki URL in contributing docs 2025-04-14 11:54:51 +02:00
LICENSE Top level readme and license 2017-04-18 17:05:03 +02:00
OWNERS update OWNERS, add OWNERS_ALIASES 2025-03-31 09:50:51 -07:00
OWNERS_ALIASES Add api-reviewers and api-approvers to the VPA API directory 2025-11-03 20:03:32 +02:00
README.md Fix CI status badges in root README 2026-01-07 08:20:33 +02:00
SECURITY_CONTACTS Update embargo doc link in SECURITY_OWNERS and changes PST to PSC 2019-03-08 10:23:48 -07:00

Kubernetes Autoscaler

Release Charts CA Tests VPA Tests GoDoc Widget

This repository contains autoscaling-related components for Kubernetes.

What's inside

Cluster Autoscaler - a component that automatically adjusts the size of a Kubernetes Cluster so that all pods have a place to run and there are no unneeded nodes. Supports several public cloud providers. Version 1.0 (GA) was released with kubernetes 1.8.

Cluster Autoscaler Helm Chart - Supported Helm chart for Cluster Autoscaler.

Vertical Pod Autoscaler - a set of components that automatically adjust the amount of CPU and memory requested by pods running in the Kubernetes Cluster. Current state - beta.

Vertical Pod Autoscaler Helm Chart - Supported Helm chart for Vertical Pod Autoscaler.

Addon Resizer - a simplified version of vertical pod autoscaler that modifies resource requests of a deployment based on the number of nodes in the Kubernetes Cluster. Current state - beta.

Contact Info

Interested in autoscaling? Want to talk? Have questions, concerns or great ideas?

Please join us on #sig-autoscaling at https://kubernetes.slack.com/, or join one of our weekly meetings. See the Kubernetes Community Repo for more information.

Getting the Code

Fork the repository in the cloud:

  1. Visit https://github.com/kubernetes/autoscaler
  2. Click Fork button (top right) to establish a cloud-based fork.

The code must be checked out as a subdirectory of k8s.io, and not github.com.

mkdir -p $GOPATH/src/k8s.io
cd $GOPATH/src/k8s.io
# Replace "$YOUR_GITHUB_USERNAME" below with your github username
git clone https://github.com/$YOUR_GITHUB_USERNAME/autoscaler.git
cd autoscaler

Please refer to Kubernetes Github workflow guide for more details.