Skip to content

Commit d4319b2

Browse files
authored
Merge pull request #8477 from laoj2/vpa-release-1.4
Update VPA defaults to 1.4.2 in the vpa-release-1.4 branch
2 parents 1752aed + a630dc4 commit d4319b2

9 files changed

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

vertical-pod-autoscaler/docs/flags.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Vertical Pod Autoscaler Flags
22
This document contains the flags for all VPA components.
33

4-
To view the most recent _release_ of flags for all VPA components, consult the release tag [flags(1.4.1)](https://github.com/kubernetes/autoscaler/blob/vertical-pod-autoscaler-1.4.1/vertical-pod-autoscaler/docs/flags.md) documentation.
4+
To view the most recent _release_ of flags for all VPA components, consult the release tag [flags(1.4.2)](https://github.com/kubernetes/autoscaler/blob/vertical-pod-autoscaler-1.4.2/vertical-pod-autoscaler/docs/flags.md) documentation.
55

66
> **Note:** This document is auto-generated from the default branch (master) of the VPA repository.
77

vertical-pod-autoscaler/hack/generate-flags.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ set -o pipefail
2121
SCRIPT_ROOT=$(realpath $(dirname "${BASH_SOURCE[0]}"))/..
2222
TARGET_FILE="${SCRIPT_ROOT}/docs/flags.md"
2323
COMPONENTS=("admission-controller" "recommender" "updater")
24-
DEFAULT_TAG="1.4.1"
24+
DEFAULT_TAG="1.4.2"
2525

2626
# Function to extract flags from a binary
2727
extract_flags() {

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

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

5656
DEFAULT_REGISTRY="registry.k8s.io/autoscaling"
57-
DEFAULT_TAG="1.4.1"
57+
DEFAULT_TAG="1.4.2"
5858

5959
REGISTRY_TO_APPLY=${REGISTRY-$DEFAULT_REGISTRY}
6060
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.4.1"
22+
DEFAULT_TAG="1.4.2"
2323
TAG_TO_APPLY=${TAG-$DEFAULT_TAG}
2424

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

0 commit comments

Comments
 (0)