autoscaler/vertical-pod-autoscaler
Ismail Alidzhikov 48222d4eaa vpa-updater: Allow patch and update for events 2025-05-07 05:33:37 +00:00
..
common Update VPA version to 1.3.1 2025-04-29 17:59:28 +00:00
deploy vpa-updater: Allow patch and update for events 2025-05-07 05:33:37 +00:00
docs Finalize VPA release 1.3.0. 2025-01-27 14:52:47 -05:00
e2e Remove v1beta2 from e2e tests 2025-01-10 21:22:39 +02:00
enhancements Adapt AEP to have 'resources' in plural 2023-11-06 15:47:58 +01:00
examples Update ubuntu-slim with Docker Schema 2 image 2025-01-07 11:45:09 -08:00
hack Update default version in VPA 1.3 branch to 1.3.1 2025-04-30 17:04:14 +00:00
pkg Address review comments 2025-04-29 14:47:33 +00:00
.gitignore cleanup(vpa): add gitignore for vendor 2024-12-06 15:16:39 +01:00
MIGRATE.md Fix typo & replace deprecated functions & replace literals with constants 2023-03-24 18:07:52 +08:00
OWNERS Add omerap12 as VPA reviewer 2024-12-28 19:07:10 +02:00
README.md Fix typo in link 2024-12-10 19:56:36 +02:00
RELEASE.md Update RELEASE.md with instructions to update vpa-up.sh. 2024-08-06 14:30:52 -04:00
go.mod Bump golang.org/x/net to v0.33.0 2024-12-19 17:50:26 +02:00
go.sum Bump golang.org/x/net to v0.33.0 2024-12-19 17:50:26 +02: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.