Skip to content

Commit

Permalink
Merge pull request kubernetes#7080 from voelzmo/fix/decouple-test-and…
Browse files Browse the repository at this point in the history
…-install-script

Decouple test and install script
  • Loading branch information
k8s-ci-robot authored Jul 22, 2024
2 parents c8e4721 + 1ded9ec commit 2c04c53
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
args: ["--v=4", "--stderrthreshold=info"]
args: ["--v=4", "--stderrthreshold=info", "--reload-cert"]
volumeMounts:
- name: tls-certs
mountPath: "/etc/tls-certs"
Expand Down
6 changes: 6 additions & 0 deletions vertical-pod-autoscaler/hack/vpa-up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,11 @@ set -o nounset
set -o pipefail

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

if [ "${TAG_TO_APPLY}" == "${DEFAULT_TAG}" ]; then
git switch --detach vertical-pod-autoscaler-${DEFAULT_TAG}
fi

$SCRIPT_ROOT/hack/vpa-process-yamls.sh create $*

0 comments on commit 2c04c53

Please sign in to comment.