Autoscaling components for Kubernetes
Go to file
Kubernetes Prow Robot f302c9172f
Merge pull request #8382 from jackfrancis/dockerfile-golang-1.23.11
[cluster-autoscaler-release-1.32]: build with go 1.23.11
2025-07-29 10:56:26 -07:00
.github Update GitHub Issues templates to try prompt author to add area 2024-11-29 10:55:12 +02:00
addon-resizer add raywainman to addon-resizer approvers 2024-12-02 19:57:48 +00:00
balancer remove maintainer labels in Dockerfiles since they just get stale 2024-11-12 17:27:52 +00:00
builder [cluster-autoscaler-release-1.32]: build with go 1.23.11 2025-07-29 10:22:21 -07:00
charts Add Shubham82 to the reviewer 2024-12-02 15:53:17 +05:30
cluster-autoscaler [cluster-autoscaler-release-1.32]: prep version.go for 1.32.2 2025-07-28 11:19:40 -07:00
hack fix: change test for removed vendor 2024-12-05 10:00:07 +01: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 #7617 from ialidzhikov/nit/vpa-generate-crd-script 2024-12-19 11:26:09 +01:00
.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 Update helm-docs version and add PR action to ensure docs are updated 2020-10-07 23:53:33 +01:00
CONTRIBUTING.md
LICENSE
OWNERS update OWNERS, add OWNERS_ALIASES 2025-04-15 18:10:14 +00:00
OWNERS_ALIASES update OWNERS, add OWNERS_ALIASES 2025-04-15 18:10:14 +00:00
README.md docs: replaces Travis CI badge with GitHub Actions badges 2021-07-13 10:20:32 -07:00
SECURITY_CONTACTS Update embargo doc link in SECURITY_OWNERS and changes PST to PSC 2019-03-08 10:23:48 -07:00
code-of-conduct.md

README.md

Kubernetes Autoscaler

Release Charts 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.

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.

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.

Charts - Supported Helm charts for components above.

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.