Update VPA defaults to 1.4.2 in the master branch

This commit is contained in:
Luiz Oliveira 2025-09-03 16:51:36 -04:00
parent 48a5974460
commit 4c86aaeca7
9 changed files with 9 additions and 9 deletions

View File

@ -20,7 +20,7 @@ spec:
runAsUser: 65534 # nobody
containers:
- name: admission-controller
image: registry.k8s.io/autoscaling/vpa-admission-controller:1.4.1
image: registry.k8s.io/autoscaling/vpa-admission-controller:1.4.2
imagePullPolicy: IfNotPresent
env:
- name: NAMESPACE

View File

@ -26,7 +26,7 @@ spec:
runAsUser: 65534 # nobody
containers:
- name: recommender
image: registry.k8s.io/autoscaling/vpa-recommender:1.4.1
image: registry.k8s.io/autoscaling/vpa-recommender:1.4.2
imagePullPolicy: Always
args:
- --recommender-name=performance

View File

@ -26,7 +26,7 @@ spec:
runAsUser: 65534 # nobody
containers:
- name: recommender
image: registry.k8s.io/autoscaling/vpa-recommender:1.4.1
image: registry.k8s.io/autoscaling/vpa-recommender:1.4.2
imagePullPolicy: Always
args:
- --recommender-name=frugal

View File

@ -20,7 +20,7 @@ spec:
runAsUser: 65534 # nobody
containers:
- name: recommender
image: registry.k8s.io/autoscaling/vpa-recommender:1.4.1
image: registry.k8s.io/autoscaling/vpa-recommender:1.4.2
imagePullPolicy: IfNotPresent
resources:
limits:

View File

@ -20,7 +20,7 @@ spec:
runAsUser: 65534 # nobody
containers:
- name: updater
image: registry.k8s.io/autoscaling/vpa-updater:1.4.1
image: registry.k8s.io/autoscaling/vpa-updater:1.4.2
imagePullPolicy: IfNotPresent
env:
- name: NAMESPACE

View File

@ -1,7 +1,7 @@
# Vertical Pod Autoscaler Flags
This document contains the flags for all VPA components.
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.
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.
> **Note:** This document is auto-generated from the default branch (master) of the VPA repository.

View File

@ -21,7 +21,7 @@ set -o pipefail
SCRIPT_ROOT=$(realpath $(dirname "${BASH_SOURCE[0]}"))/..
TARGET_FILE="${SCRIPT_ROOT}/docs/flags.md"
COMPONENTS=("admission-controller" "recommender" "updater")
DEFAULT_TAG="1.4.1"
DEFAULT_TAG="1.4.2"
# Function to extract flags from a binary
extract_flags() {

View File

@ -54,7 +54,7 @@ if [ $# -eq 0 ]; then
fi
DEFAULT_REGISTRY="registry.k8s.io/autoscaling"
DEFAULT_TAG="1.4.1"
DEFAULT_TAG="1.4.2"
REGISTRY_TO_APPLY=${REGISTRY-$DEFAULT_REGISTRY}
TAG_TO_APPLY=${TAG-$DEFAULT_TAG}

View File

@ -19,7 +19,7 @@ set -o nounset
set -o pipefail
SCRIPT_ROOT=$(dirname ${BASH_SOURCE})/..
DEFAULT_TAG="1.4.1"
DEFAULT_TAG="1.4.2"
TAG_TO_APPLY=${TAG-$DEFAULT_TAG}
if [ "${TAG_TO_APPLY}" == "${DEFAULT_TAG}" ]; then