Autoscaling components for Kubernetes
Go to file
Kubernetes Prow Robot 95f2644567
Merge pull request #2300 from bskiba/vpa-release-0.4
Really review all VPA object creations
2019-09-04 07:17:01 -07:00
addon-resizer Keep recommended version 1.8 2019-02-08 17:30:38 -02:00
builder Merge pull request #1447 from aleksandra-malinowska/add-owners-builder 2018-11-27 02:45:25 -08:00
cluster-autoscaler Merge pull request #1679 from lsytj0413/random-expander 2019-02-13 01:58:50 -08:00
hack Allow passing EXCLUDE variable for verify-all.sh 2019-02-11 17:51:20 +01:00
vertical-pod-autoscaler Really review all VPA object creations 2019-09-04 16:01:26 +02:00
.gitignore
.travis.yml Update go version used from 1.10.2 to 1.11.2 to match one used by k8s 2018-11-26 15:39:59 +01:00
CONTRIBUTING.md
LICENSE
OWNERS Update owners files for autoscaling 2018-08-21 17:50:40 +02:00
README.md Add info on forking 2018-11-15 11:57:19 +01:00
code-of-conduct.md

README.md

Kubernetes Autoscaler

Build Status 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. Works with GCP, AWS and Azure. 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 - alpha.

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.