autoscaler/vertical-pod-autoscaler
Ray Wainman 20ebe030c3
Build VPA components in parallel
2025-04-28 14:24:28 -04:00
..
common change our release process to bump the version in the main branch immediately after cutting a release branch so that new development is done against the new version 2025-03-17 15:24:08 +00:00
deploy Merge pull request #7454 from maxcao13/reload-ca 2025-02-03 13:22:57 -08:00
docs chore(docs): update link to use full URI 2025-03-28 10:16:55 +01:00
e2e update golang.org/x/net to address vulnerability 2025-04-14 16:12:40 +00:00
enhancements Parametrize pod resize timeouts in AEP-4016 2025-03-27 14:39:15 -04:00
examples Small documentation changes to supplement removal of v1beta2 2025-01-28 01:11:46 +00:00
hack Merge pull request #7984 from toredash/fix/vpa-autoscaler-flags-link 2025-03-31 18:58:36 -07:00
pkg Fix default registry in VPA makefiles 2025-04-28 15:15:14 +00:00
.gitignore Ignore VPA rbac file generated from local e2e installation 2025-02-25 16:34:09 -08:00
.golangci.yaml Enable forbidigo for VPA 2025-02-19 10:30:47 +02:00
MIGRATE.md Small documentation changes to supplement removal of v1beta2 2025-01-28 01:11:46 +00:00
OWNERS Add omerap12 to VPA approvers 2025-03-28 09:00:42 +00:00
README.md Merge pull request #7608 from adrianmoisey/generate-api-docs 2025-01-23 13:17:21 -08:00
RELEASE.md chore(release-process): update flags and flags link 2025-03-27 09:24:16 +01:00
cloudbuild.yaml Build VPA components in parallel 2025-04-28 14:24:28 -04:00
go.mod update golang.org/x/net to address vulnerability 2025-04-14 16:12:40 +00:00
go.sum update golang.org/x/net to address vulnerability 2025-04-14 16:12:40 +00:00

README.md

Vertical Pod Autoscaler

Contents

Intro

Vertical Pod Autoscaler (VPA) frees users from the necessity of setting up-to-date resource requests for the containers in their pods. When configured, it will set the requests automatically based on usage and thus allow proper scheduling onto nodes so that appropriate resource amount is available for each pod. It will also maintain ratios between requests and limits that were specified in initial containers configuration.

It can both down-scale pods that are over-requesting resources, and also up-scale pods that are under-requesting resources based on their usage over time.

Autoscaling is configured with a Custom Resource Definition object called VerticalPodAutoscaler. It allows to specify which pods should be vertically autoscaled as well as if/how the resource recommendations are applied.

To enable vertical pod autoscaling on your cluster please follow the installation procedure described below.

Getting Started

See Installation for a guide on installation, followed by a the Quick start guide.

Also refer to the FAQ for more.

Components and Architecture

The Vertical Pod Autoscaler consists of three parts. The recommender, updater and admission-controller. Read more about them on the components page.

Features and Known limitations

You can also read about the features and known limitations of the VPA.