[bitnami/argo-cd] Release 2.4.14-debian-11-r3 (#9948)

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
2022-10-13 03:03:34 +02:00
committed by GitHub
parent 22010e377b
commit f8dae26357
3 changed files with 7 additions and 7 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="2.4.14-debian-11-r2" \
org.opencontainers.image.ref.name="2.4.14-debian-11-r3" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/argo-cd" \
org.opencontainers.image.title="argo-cd" \
org.opencontainers.image.vendor="VMware, Inc." \
@@ -23,7 +23,7 @@ RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"kustomize-4.5.7-3-linux-${OS_ARCH}-debian-11" \
"ksonnet-0.13.1-153-linux-${OS_ARCH}-debian-11" \
"helm-3.10.0-1-linux-${OS_ARCH}-debian-11" \
"helm-3.10.1-0-linux-${OS_ARCH}-debian-11" \
"gosu-1.14.0-155-linux-${OS_ARCH}-debian-11" \
"argo-cd-2.4.14-2-linux-${OS_ARCH}-debian-11" \
) && \
@@ -34,7 +34,7 @@ RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
fi && \
sha256sum -c "${COMPONENT}.tar.gz.sha256" && \
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
rm -rf "${COMPONENT}.tar.gz{,sha256}" ; \
rm -rf "${COMPONENT}".tar.gz{,.sha256} ; \
done
RUN apt-get autoremove --purge -y curl && \
apt-get update && apt-get upgrade -y && \

View File

@@ -15,10 +15,10 @@
},
"helm": {
"arch": "amd64",
"digest": "4cd0975126727e8fe7aaa53fa924977b4013974347e116e6f2d636cd34da601f",
"digest": "a434974402349c56c47284fe9ffac442a750d11b7cddddc87179d9eb1decfed4",
"distro": "debian-11",
"type": "NAMI",
"version": "3.10.0-1"
"version": "3.10.1-0"
},
"ksonnet": {
"arch": "amd64",

View File

@@ -519,7 +519,7 @@ get_machine_id() {
get_disk_device_id() {
local device_id=""
if grep -q ^/dev /proc/mounts; then
device_id="$(grep -q ^/dev /proc/mounts | awk '$2 == "/" { print $1 }' | tail -1)"
device_id="$(grep ^/dev /proc/mounts | awk '$2 == "/" { print $1 }' | tail -1)"
fi
# If it could not be autodetected, fallback to /dev/sda1 as a default
if [[ -z "$device_id" || ! -b "$device_id" ]]; then
@@ -538,7 +538,7 @@ get_disk_device_id() {
# Root disk ID
#########################
get_root_disk_device_id() {
get_disk_device_id | sed 's/[0-9]\+$//'
get_disk_device_id | sed -E 's/p?[0-9]+$//'
}
########################