Skip to content

Commit f16af75

Browse files
committed
Change VPA default version to 0.9.0
1 parent e017121 commit f16af75

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

vertical-pod-autoscaler/deploy/admission-controller-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
runAsUser: 65534 # nobody
2121
containers:
2222
- name: admission-controller
23-
image: k8s.gcr.io/autoscaling/vpa-admission-controller:0.8.1
23+
image: k8s.gcr.io/autoscaling/vpa-admission-controller:0.9.0
2424
imagePullPolicy: Always
2525
env:
2626
- name: NAMESPACE

vertical-pod-autoscaler/deploy/recommender-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
runAsUser: 65534 # nobody
2727
containers:
2828
- name: recommender
29-
image: k8s.gcr.io/autoscaling/vpa-recommender:0.8.1
29+
image: k8s.gcr.io/autoscaling/vpa-recommender:0.9.0
3030
imagePullPolicy: Always
3131
resources:
3232
limits:

vertical-pod-autoscaler/deploy/updater-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
runAsUser: 65534 # nobody
2727
containers:
2828
- name: updater
29-
image: k8s.gcr.io/autoscaling/vpa-updater:0.8.1
29+
image: k8s.gcr.io/autoscaling/vpa-updater:0.9.0
3030
imagePullPolicy: Always
3131
resources:
3232
limits:

vertical-pod-autoscaler/hack/vpa-process-yaml.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if [ $# -eq 0 ]; then
3232
fi
3333

3434
DEFAULT_REGISTRY="k8s.gcr.io/autoscaling"
35-
DEFAULT_TAG="0.8.1"
35+
DEFAULT_TAG="0.9.0"
3636

3737
REGISTRY_TO_APPLY=${REGISTRY-$DEFAULT_REGISTRY}
3838
TAG_TO_APPLY=${TAG-$DEFAULT_TAG}

0 commit comments

Comments
 (0)