[bitnami/cluster-autoscaler] Release 1.26.1-debian-11-r2 (#19841)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot
2023-01-11 14:38:55 +01:00
committed by GitHub
parent 7b6c7383dd
commit 9a685d14d4
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ ARG TARGETARCH
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.ref.name="1.26.1-debian-11-r1" \
org.opencontainers.image.ref.name="1.26.1-debian-11-r2" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/cluster-autoscaler" \
org.opencontainers.image.title="cluster-autoscaler" \
org.opencontainers.image.vendor="VMware, Inc." \

View File

@@ -21,7 +21,7 @@ if [ -z "$LOG_OUTPUT" ]; then
LOG_OUTPUT="/opt/bitnami/cluster-autoscaler/log/cluster_autoscaler.log"
fi
/opt/bitnami/cluster-autoscaler/bin/cluster-autoscaler "$@" 1>>$LOG_OUTPUT 2>&1 &
/opt/bitnami/cluster-autoscaler/bin/cluster-autoscaler "$@" 1>>"$LOG_OUTPUT" 2>&1 &
pid="$!"
# shellcheck disable=SC2064
trap "kill -15 $pid" 15