Skip to content

Commit

Permalink
Merge pull request #7774 from jm-franc/vpa-finalize-branch
Browse files Browse the repository at this point in the history
Finalize VPA release 1.3.0.
  • Loading branch information
k8s-ci-robot authored Jan 27, 2025
2 parents 5b08a02 + c47a155 commit 200a292
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
runAsUser: 65534 # nobody
containers:
- name: admission-controller
image: registry.k8s.io/autoscaling/vpa-admission-controller:1.2.2
image: registry.k8s.io/autoscaling/vpa-admission-controller:1.3.0
imagePullPolicy: IfNotPresent
env:
- name: NAMESPACE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
runAsUser: 65534 # nobody
containers:
- name: recommender
image: registry.k8s.io/autoscaling/vpa-recommender:1.2.2
image: registry.k8s.io/autoscaling/vpa-recommender:1.3.0
imagePullPolicy: Always
args:
- --recommender-name=performance
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
runAsUser: 65534 # nobody
containers:
- name: recommender
image: registry.k8s.io/autoscaling/vpa-recommender:1.2.2
image: registry.k8s.io/autoscaling/vpa-recommender:1.3.0
imagePullPolicy: Always
args:
- --recommender-name=frugal
Expand Down
2 changes: 1 addition & 1 deletion vertical-pod-autoscaler/deploy/recommender-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
runAsUser: 65534 # nobody
containers:
- name: recommender
image: registry.k8s.io/autoscaling/vpa-recommender:1.2.2
image: registry.k8s.io/autoscaling/vpa-recommender:1.3.0
imagePullPolicy: IfNotPresent
resources:
limits:
Expand Down
2 changes: 1 addition & 1 deletion vertical-pod-autoscaler/deploy/updater-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
runAsUser: 65534 # nobody
containers:
- name: updater
image: registry.k8s.io/autoscaling/vpa-updater:1.2.2
image: registry.k8s.io/autoscaling/vpa-updater:1.3.0
imagePullPolicy: IfNotPresent
env:
- name: NAMESPACE
Expand Down
3 changes: 2 additions & 1 deletion vertical-pod-autoscaler/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
- [Install command](#install-command)
- [Tear down](#tear-down)

The current default version is Vertical Pod Autoscaler 1.2.2
The current default version is Vertical Pod Autoscaler 1.3.0

## Compatibility

| VPA version | Kubernetes version |
|-----------------|--------------------|
| 1.3.0 | 1.28+ |
| 1.2.x | 1.27+ |
| 1.1.x | 1.25+ |
| 1.0 | 1.25+ |
Expand Down
2 changes: 1 addition & 1 deletion vertical-pod-autoscaler/hack/vpa-process-yaml.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if [ $# -eq 0 ]; then
fi

DEFAULT_REGISTRY="registry.k8s.io/autoscaling"
DEFAULT_TAG="1.2.2"
DEFAULT_TAG="1.3.0"

REGISTRY_TO_APPLY=${REGISTRY-$DEFAULT_REGISTRY}
TAG_TO_APPLY=${TAG-$DEFAULT_TAG}
Expand Down
2 changes: 1 addition & 1 deletion vertical-pod-autoscaler/hack/vpa-up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set -o nounset
set -o pipefail

SCRIPT_ROOT=$(dirname ${BASH_SOURCE})/..
DEFAULT_TAG="1.2.2"
DEFAULT_TAG="1.3.0"
TAG_TO_APPLY=${TAG-$DEFAULT_TAG}

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

0 comments on commit 200a292

Please sign in to comment.