Skip to content

Commit d676e07

Browse files
authored
Merge pull request #7768 from jm-franc/vpa-1.3.0-updates
Finalize VPA release 1.3.0.
2 parents ec8b0da + 108abb0 commit d676e07

8 files changed

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

vertical-pod-autoscaler/docs/installation.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@
1010
- [Install command](#install-command)
1111
- [Tear down](#tear-down)
1212

13-
The current default version is Vertical Pod Autoscaler 1.2.2
13+
The current default version is Vertical Pod Autoscaler 1.3.0
1414

1515
## Compatibility
1616

1717
| VPA version | Kubernetes version |
1818
|-----------------|--------------------|
19+
| 1.3.x | 1.28+ |
1920
| 1.2.x | 1.27+ |
2021
| 1.1.x | 1.25+ |
2122
| 1.0 | 1.25+ |

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.2.2"
35+
DEFAULT_TAG="1.3.0"
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.2.2"
22+
DEFAULT_TAG="1.3.0"
2323
TAG_TO_APPLY=${TAG-$DEFAULT_TAG}
2424

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

0 commit comments

Comments
 (0)