3.2.4-debian-10-r21 release
This commit is contained in:
parent
a037abebee
commit
66060bddf9
|
|
@ -8,14 +8,14 @@ ENV OS_ARCH="amd64" \
|
|||
COPY prebuildfs /
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages acl ca-certificates curl docker git gzip jq procps tar
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kubectl" "1.19.16-0" --checksum 4941d1c195a034cf62aeb06b437f3f8c24ad9ef44425e473d3c4b9b0cbd56f5c
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kubectl" "1.23.0-0" --checksum 4af656ea1af0315cd5d967857c18ad5c0abec0fe2c56924ee71587965478baa4
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e
|
||||
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "argo-workflow-exec" "3.2.4-0" --checksum 3cad893d0b121947299c68b3d3af395e7488ba213ab81abb9a2a1affa4515c30
|
||||
|
||||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/argo-workflow-exec/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="argo-workflow-exec" \
|
||||
BITNAMI_IMAGE_VERSION="3.2.4-debian-10-r20" \
|
||||
BITNAMI_IMAGE_VERSION="3.2.4-debian-10-r21" \
|
||||
PATH="/opt/bitnami/kubectl/bin:/opt/bitnami/common/bin:/opt/bitnami/argo-workflow-exec/bin:/opt/bitnami/argo-workflow-exec/hack:$PATH"
|
||||
|
||||
USER 1001
|
||||
|
|
|
|||
|
|
@ -15,9 +15,9 @@
|
|||
},
|
||||
"kubectl": {
|
||||
"arch": "amd64",
|
||||
"digest": "4941d1c195a034cf62aeb06b437f3f8c24ad9ef44425e473d3c4b9b0cbd56f5c",
|
||||
"digest": "4af656ea1af0315cd5d967857c18ad5c0abec0fe2c56924ee71587965478baa4",
|
||||
"distro": "debian-10",
|
||||
"type": "NAMI",
|
||||
"version": "1.19.16-0"
|
||||
"version": "1.23.0-0"
|
||||
}
|
||||
}
|
||||
|
|
@ -20,8 +20,13 @@
|
|||
owned_by() {
|
||||
local path="${1:?path is missing}"
|
||||
local owner="${2:?owner is missing}"
|
||||
local group="${3:-}"
|
||||
|
||||
chown "$owner":"$owner" "$path"
|
||||
if [[ -n $group ]]; then
|
||||
chown "$owner":"$group" "$path"
|
||||
else
|
||||
chown "$owner":"$owner" "$path"
|
||||
fi
|
||||
}
|
||||
|
||||
########################
|
||||
|
|
@ -34,11 +39,12 @@ owned_by() {
|
|||
#########################
|
||||
ensure_dir_exists() {
|
||||
local dir="${1:?directory is missing}"
|
||||
local owner="${2:-}"
|
||||
local owner_user="${2:-}"
|
||||
local owner_group="${3:-}"
|
||||
|
||||
mkdir -p "${dir}"
|
||||
if [[ -n $owner ]]; then
|
||||
owned_by "$dir" "$owner"
|
||||
if [[ -n $owner_user ]]; then
|
||||
owned_by "$dir" "$owner_user" "$owner_group"
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ Deploying Bitnami applications as Helm Charts is the easiest way to get started
|
|||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`3`, `3-debian-10`, `3.2.4`, `3.2.4-debian-10-r20`, `latest` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-argo-workflow-exec/blob/3.2.4-debian-10-r20/3/debian-10/ Dockerfile)
|
||||
* [`3`, `3-debian-10`, `3.2.4`, `3.2.4-debian-10-r21`, `latest` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-argo-workflow-exec/blob/3.2.4-debian-10-r21/3/debian-10/ Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/argo-workflow-exec GitHub repo](https://github.com/bitnami/bitnami-docker-argo-workflow-exec).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue