[bitnami/argo-workflow-exec] Release 3.4.6-debian-11-r0 (#28698)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
15569143f7
commit
74eadef2f0
|
|
@ -3,13 +3,13 @@ FROM docker.io/bitnami/minideb:bullseye
|
|||
ARG TARGETARCH
|
||||
|
||||
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
|
||||
org.opencontainers.image.created="2023-03-27T21:53:26Z" \
|
||||
org.opencontainers.image.created="2023-04-01T10:10:32Z" \
|
||||
org.opencontainers.image.description="Application packaged by VMware, Inc" \
|
||||
org.opencontainers.image.licenses="Apache-2.0" \
|
||||
org.opencontainers.image.ref.name="3.4.5-debian-11-r17" \
|
||||
org.opencontainers.image.ref.name="3.4.6-debian-11-r0" \
|
||||
org.opencontainers.image.title="argo-workflow-exec" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="3.4.5"
|
||||
org.opencontainers.image.version="3.4.6"
|
||||
|
||||
ENV OS_ARCH="${TARGETARCH:-amd64}" \
|
||||
OS_FLAVOUR="debian-11" \
|
||||
|
|
@ -21,9 +21,9 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|||
RUN install_packages ca-certificates curl jq procps
|
||||
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||
COMPONENTS=( \
|
||||
"kubectl-1.26.3-0-linux-${OS_ARCH}-debian-11" \
|
||||
"gosu-1.16.0-3-linux-${OS_ARCH}-debian-11" \
|
||||
"argo-workflow-exec-3.4.5-2-linux-${OS_ARCH}-debian-11" \
|
||||
"kubectl-1.26.3-1-linux-${OS_ARCH}-debian-11" \
|
||||
"gosu-1.16.0-5-linux-${OS_ARCH}-debian-11" \
|
||||
"argo-workflow-exec-3.4.6-0-linux-${OS_ARCH}-debian-11" \
|
||||
) && \
|
||||
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||
|
|
@ -40,7 +40,7 @@ RUN apt-get autoremove --purge -y curl && \
|
|||
|
||||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/argo-workflow-exec/postunpack.sh
|
||||
ENV APP_VERSION="3.4.5" \
|
||||
ENV APP_VERSION="3.4.6" \
|
||||
BITNAMI_APP_NAME="argo-workflow-exec" \
|
||||
PATH="/opt/bitnami/kubectl/bin:/opt/bitnami/common/bin:/opt/bitnami/argo-workflow-exec/bin:/opt/bitnami/argo-workflow-exec/hack:$PATH"
|
||||
|
||||
|
|
|
|||
|
|
@ -3,18 +3,18 @@
|
|||
"arch": "amd64",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "3.4.5-2"
|
||||
"version": "3.4.6-0"
|
||||
},
|
||||
"gosu": {
|
||||
"arch": "amd64",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.16.0-3"
|
||||
"version": "1.16.0-5"
|
||||
},
|
||||
"kubectl": {
|
||||
"arch": "amd64",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "1.26.3-0"
|
||||
"version": "1.26.3-1"
|
||||
}
|
||||
}
|
||||
|
|
@ -279,7 +279,7 @@ remove_logrotate_conf() {
|
|||
# Flags:
|
||||
# --custom-service-content - Custom content to add to the [service] block
|
||||
# --environment - Environment variable to define (multiple --environment options may be passed)
|
||||
# --environment-file - Text file with environment variables
|
||||
# --environment-file - Text file with environment variables (multiple --environment-file options may be passed)
|
||||
# --exec-start - Start command (required)
|
||||
# --exec-start-pre - Pre-start command (optional)
|
||||
# --exec-start-post - Post-start command (optional)
|
||||
|
|
@ -330,7 +330,6 @@ generate_systemd_conf() {
|
|||
| --type \
|
||||
| --user \
|
||||
| --group \
|
||||
| --environment-file \
|
||||
| --exec-start \
|
||||
| --exec-stop \
|
||||
| --exec-reload \
|
||||
|
|
@ -368,6 +367,12 @@ generate_systemd_conf() {
|
|||
[[ -n "$environment" ]] && environment+=$'\n'
|
||||
environment+="Environment=${1:?"--environment value is missing"}"
|
||||
;;
|
||||
--environment-file)
|
||||
shift
|
||||
# It is possible to add multiple environment-file lines
|
||||
[[ -n "$environment_file" ]] && environment_file+=$'\n'
|
||||
environment_file+="EnvironmentFile=${1:?"--environment-file value is missing"}"
|
||||
;;
|
||||
*)
|
||||
echo "Invalid command line flag ${1}" >&2
|
||||
return 1
|
||||
|
|
@ -435,7 +440,8 @@ EOF
|
|||
cat >> "$service_file" <<< "$environment"
|
||||
fi
|
||||
if [[ -n "$environment_file" ]]; then
|
||||
cat >> "$service_file" <<< "EnvironmentFile=${environment_file}"
|
||||
# This variable may contain multiple EnvironmentFile= directives
|
||||
cat >> "$service_file" <<< "$environment_file"
|
||||
fi
|
||||
# Logging
|
||||
if [[ -n "$standard_output" ]]; then
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
rolling-tags:
|
||||
- "3"
|
||||
- 3-debian-11
|
||||
- 3.4.5
|
||||
- 3.4.6
|
||||
- latest
|
||||
|
|
|
|||
Loading…
Reference in New Issue