2.2.1-debian-10-r0 release

This commit is contained in:
Bitnami Bot
2021-12-17 06:16:54 +00:00
parent aea864bdb4
commit d4af8d64d6
5 changed files with 25 additions and 5 deletions

View File

@@ -13,13 +13,13 @@ RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "kustomize" "4.4.
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "ksonnet" "0.13.1-0" --checksum d789f0ddb6cf2351ba09ca3e907ea2e41605067f398aa8fa069bdcfe59a25cd6
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "helm" "3.7.2-0" --checksum 061224e6c20ae4405b022e748fadc0ac9d537e1905162e9cb8f463ad3eb4820a
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-0" --checksum 3e6fc37ca073b10a73a804d39c2f0c028947a1a596382a4f8ebe43dfbaa3a25e
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "argo-cd" "2.2.0-0" --checksum 8434840f1fe712a7d1480daad06588a13fe98b715a40eb3f5c29bbd3cc20440b
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "argo-cd" "2.2.1-0" --checksum dfcc989450c20c0242751122455482a5bc481604310b20ce9a44de65600d5543
RUN chmod g+rwX /opt/bitnami
COPY rootfs /
RUN /opt/bitnami/scripts/argo-cd/postunpack.sh
ENV BITNAMI_APP_NAME="argo-cd" \
BITNAMI_IMAGE_VERSION="2.2.0-debian-10-r1" \
BITNAMI_IMAGE_VERSION="2.2.1-debian-10-r0" \
LIBNSS_WRAPPER_PATH="/opt/bitnami/common/lib/libnss_wrapper.so" \
LNAME="argocd" \
NSS_WRAPPER_GROUP="/opt/bitnami/argo-cd/nss_group" \

View File

@@ -1,10 +1,10 @@
{
"argo-cd": {
"arch": "amd64",
"digest": "8434840f1fe712a7d1480daad06588a13fe98b715a40eb3f5c29bbd3cc20440b",
"digest": "dfcc989450c20c0242751122455482a5bc481604310b20ce9a44de65600d5543",
"distro": "debian-10",
"type": "NAMI",
"version": "2.2.0-0"
"version": "2.2.1-0"
},
"gosu": {
"arch": "amd64",

View File

@@ -446,3 +446,19 @@ generate_sha_hash() {
echo -n "$str" | "sha${algorithm}sum" | awk '{print $1}'
}
########################
# Converts a string to its hexadecimal representation
# Arguments:
# $1 - string
# Returns:
# hexadecimal representation of the string
#########################
convert_to_hex() {
local -r str=${1:?missing input string}
local -i iterator
local char
for ((iterator=0; iterator<${#str}; iterator++)); do
char=${str:iterator:1}
printf '%x' "'${char}"
done
}

View File

@@ -177,6 +177,8 @@ web_server_reload() {
# --document-root - Path to document root directory
# Apache-specific flags:
# --apache-additional-configuration - Additional vhost configuration (no default)
# --apache-additional-http-configuration - Additional HTTP vhost configuration (no default)
# --apache-additional-https-configuration - Additional HTTPS vhost configuration (no default)
# --apache-before-vhost-configuration - Configuration to add before the <VirtualHost> directive (no default)
# --apache-allow-override - Whether to allow .htaccess files (only allowed when --move-htaccess is set to 'no' and type is not defined)
# --apache-extra-directory-configuration - Extra configuration for the document root directory
@@ -224,6 +226,8 @@ ensure_web_server_app_configuration_exists() {
# Specific Apache flags
--apache-additional-configuration \
| --apache-additional-http-configuration \
| --apache-additional-https-configuration \
| --apache-before-vhost-configuration \
| --apache-allow-override \
| --apache-extra-directory-configuration \

View File

@@ -38,7 +38,7 @@ $ docker-compose up -d
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/).
* [`2`, `2-debian-10`, `2.2.0`, `2.2.0-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-argo-cd/blob/2.2.0-debian-10-r1/2/debian-10/ Dockerfile)
* [`2`, `2-debian-10`, `2.2.1`, `2.2.1-debian-10-r0`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-argo-cd/blob/2.2.1-debian-10-r0/2/debian-10/ Dockerfile)
Subscribe to project updates by watching the [bitnami/argo-cd GitHub repo](https://github.com/bitnami/bitnami-docker-argo-cd).