Skip to content

Commit 8fc0168

Browse files
authored
Merge pull request #8076 from raywainman/vpa-release-1.3
Update default version in VPA 1.3 branch to 1.3.1
2 parents 8bf3c92 + e4afc56 commit 8fc0168

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
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: registry.k8s.io/autoscaling/vpa-admission-controller:1.3.0
23+
image: registry.k8s.io/autoscaling/vpa-admission-controller:1.3.1
2424
imagePullPolicy: IfNotPresent
2525
env:
2626
- name: NAMESPACE

vertical-pod-autoscaler/deploy/recommender-deployment-high.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: registry.k8s.io/autoscaling/vpa-recommender:1.3.0
29+
image: registry.k8s.io/autoscaling/vpa-recommender:1.3.1
3030
imagePullPolicy: Always
3131
args:
3232
- --recommender-name=performance

vertical-pod-autoscaler/deploy/recommender-deployment-low.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: registry.k8s.io/autoscaling/vpa-recommender:1.3.0
29+
image: registry.k8s.io/autoscaling/vpa-recommender:1.3.1
3030
imagePullPolicy: Always
3131
args:
3232
- --recommender-name=frugal

vertical-pod-autoscaler/deploy/recommender-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: recommender
23-
image: registry.k8s.io/autoscaling/vpa-recommender:1.3.0
23+
image: registry.k8s.io/autoscaling/vpa-recommender:1.3.1
2424
imagePullPolicy: IfNotPresent
2525
resources:
2626
limits:

vertical-pod-autoscaler/deploy/updater-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: updater
23-
image: registry.k8s.io/autoscaling/vpa-updater:1.3.0
23+
image: registry.k8s.io/autoscaling/vpa-updater:1.3.1
2424
imagePullPolicy: IfNotPresent
2525
env:
2626
- name: NAMESPACE

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="registry.k8s.io/autoscaling"
35-
DEFAULT_TAG="1.3.0"
35+
DEFAULT_TAG="1.3.1"
3636

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

vertical-pod-autoscaler/hack/vpa-up.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -o nounset
1919
set -o pipefail
2020

2121
SCRIPT_ROOT=$(dirname ${BASH_SOURCE})/..
22-
DEFAULT_TAG="1.3.0"
22+
DEFAULT_TAG="1.3.1"
2323
TAG_TO_APPLY=${TAG-$DEFAULT_TAG}
2424

2525
if [ "${TAG_TO_APPLY}" == "${DEFAULT_TAG}" ]; then

0 commit comments

Comments
 (0)