Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add VPA version config-item #5361

Merged
merged 4 commits into from
Sep 15, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cluster/config-defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,9 @@ horizontal_pod_autoscaler_sync_period: "30s"
horizontal_pod_autoscaler_tolerance: "0.1"
horizontal_pod_downscale_stabilization: "5m0s"

# Vertical pod autoscaler version config for controlling roll-out
vertical_pod_autoscaler_version: "v0.11.0-internal.17"
demonCoder95 marked this conversation as resolved.
Show resolved Hide resolved

# Cluster update settings
{{if eq .Cluster.Environment "production"}}
drain_grace_period: "6h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
serviceAccountName: vpa-updater
containers:
- name: updater
image: container-registry.zalando.net/teapot/vpa-updater:v0.6.1-internal.16
image: container-registry.zalando.net/teapot/vpa-updater:{{.Cluster.ConfigItems.vertical_pod_autoscaler_version}}
demonCoder95 marked this conversation as resolved.
Show resolved Hide resolved
command:
- ./updater
args:
Expand Down