From 9d7ca5fbea6c00237b17aa46e0ce29ddfc2b6cd8 Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Thu, 1 Sep 2022 18:28:36 +0200 Subject: [PATCH] [bitnami/zookeeper] Release 3.7.1-debian-11-r35 (#4827) Signed-off-by: Bitnami Containers Signed-off-by: Bitnami Containers --- bitnami/zookeeper/3.7/debian-11/Dockerfile | 36 ++++++++-- .../opt/bitnami/.bitnami_components.json | 16 ++--- .../opt/bitnami/scripts/libcomponent.sh | 65 ------------------- .../opt/bitnami/scripts/libzookeeper.sh | 10 ++- bitnami/zookeeper/README.md | 2 +- 5 files changed, 46 insertions(+), 83 deletions(-) delete mode 100644 bitnami/zookeeper/3.7/debian-11/prebuildfs/opt/bitnami/scripts/libcomponent.sh diff --git a/bitnami/zookeeper/3.7/debian-11/Dockerfile b/bitnami/zookeeper/3.7/debian-11/Dockerfile index dce881d9316e..83d7b213a744 100644 --- a/bitnami/zookeeper/3.7/debian-11/Dockerfile +++ b/bitnami/zookeeper/3.7/debian-11/Dockerfile @@ -7,7 +7,7 @@ ENV HOME="/" \ LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \ org.opencontainers.image.description="Application packaged by Bitnami" \ - org.opencontainers.image.ref.name="3.7.1-debian-11-r34" \ + org.opencontainers.image.ref.name="3.7.1-debian-11-r35" \ org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/zookeeper" \ org.opencontainers.image.title="zookeeper" \ org.opencontainers.image.vendor="VMware, Inc." \ @@ -16,11 +16,35 @@ LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \ COPY prebuildfs / SHELL ["/bin/bash", "-o", "pipefail", "-c"] # Install required system packages and dependencies -RUN install_packages acl ca-certificates curl gzip libc6 netcat procps tar zlib1g -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "wait-for-port" "1.0.3-153" --checksum 8c8e324ab6e7b7d76b4655182d6ea5f6550edfc9e32bec92228e678c26fc8b16 -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "java" "11.0.15-1-2" --checksum 1a5468c7b552dfc8a33c5c9b214dbf7dd143a5f008cc3aa2e0418fab5eb16c5c -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.14.0-153" --checksum d3ae0109be24e8bc56f97359b8290b91243454de946dd60bd8520a0896a88449 -RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "zookeeper" "3.7.1-153" --checksum 30c8c3120445eadf63d999a7f3854fc3af23cf964544dfe0ec848b03eb08d391 +RUN install_packages acl ca-certificates curl gzip libc6 netcat procps tar xmlstarlet zlib1g +RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ + if [ ! -f wait-for-port-1.0.3-154-linux-amd64-debian-11.tar.gz ]; then \ + curl -SsLf https://downloads.bitnami.com/files/stacksmith/wait-for-port-1.0.3-154-linux-amd64-debian-11.tar.gz -O ; \ + fi && \ + echo "74a09c2208af7316f32ee3ee8479d70b20ad54f1a989e84b6417e23c1f07c147 wait-for-port-1.0.3-154-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \ + tar -zxf wait-for-port-1.0.3-154-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ + rm -rf wait-for-port-1.0.3-154-linux-amd64-debian-11.tar.gz +RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ + if [ ! -f java-11.0.15-1-3-linux-amd64-debian-11.tar.gz ]; then \ + curl -SsLf https://downloads.bitnami.com/files/stacksmith/java-11.0.15-1-3-linux-amd64-debian-11.tar.gz -O ; \ + fi && \ + echo "7214b8ab81c9d919f87f027590ca80c198f65fe50c5e2886d8e5e20691aee8d7 java-11.0.15-1-3-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \ + tar -zxf java-11.0.15-1-3-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ + rm -rf java-11.0.15-1-3-linux-amd64-debian-11.tar.gz +RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ + if [ ! -f gosu-1.14.0-154-linux-amd64-debian-11.tar.gz ]; then \ + curl -SsLf https://downloads.bitnami.com/files/stacksmith/gosu-1.14.0-154-linux-amd64-debian-11.tar.gz -O ; \ + fi && \ + echo "e36c3d90f4fbfbe989f40947fa7c8ab817f12fcf97d3aef893c753a20ce976ab gosu-1.14.0-154-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \ + tar -zxf gosu-1.14.0-154-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ + rm -rf gosu-1.14.0-154-linux-amd64-debian-11.tar.gz +RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ + if [ ! -f zookeeper-3.7.1-154-linux-amd64-debian-11.tar.gz ]; then \ + curl -SsLf https://downloads.bitnami.com/files/stacksmith/zookeeper-3.7.1-154-linux-amd64-debian-11.tar.gz -O ; \ + fi && \ + echo "e293dcd0389aaf13a6f6e3f84c3761bd48dc605d64e99977ffbee33736685c23 zookeeper-3.7.1-154-linux-amd64-debian-11.tar.gz" | sha256sum -c - && \ + tar -zxf zookeeper-3.7.1-154-linux-amd64-debian-11.tar.gz -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \ + rm -rf zookeeper-3.7.1-154-linux-amd64-debian-11.tar.gz RUN apt-get update && apt-get upgrade -y && \ rm -r /var/lib/apt/lists /var/cache/apt/archives RUN chmod g+rwX /opt/bitnami diff --git a/bitnami/zookeeper/3.7/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/zookeeper/3.7/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json index 241a82777dea..1a1d6f12cc3d 100644 --- a/bitnami/zookeeper/3.7/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/zookeeper/3.7/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json @@ -1,30 +1,30 @@ { "gosu": { "arch": "amd64", - "digest": "d3ae0109be24e8bc56f97359b8290b91243454de946dd60bd8520a0896a88449", + "digest": "e36c3d90f4fbfbe989f40947fa7c8ab817f12fcf97d3aef893c753a20ce976ab", "distro": "debian-11", "type": "NAMI", - "version": "1.14.0-153" + "version": "1.14.0-154" }, "java": { "arch": "amd64", - "digest": "1a5468c7b552dfc8a33c5c9b214dbf7dd143a5f008cc3aa2e0418fab5eb16c5c", + "digest": "7214b8ab81c9d919f87f027590ca80c198f65fe50c5e2886d8e5e20691aee8d7", "distro": "debian-11", "type": "NAMI", - "version": "11.0.15-1-2" + "version": "11.0.15-1-3" }, "wait-for-port": { "arch": "amd64", - "digest": "8c8e324ab6e7b7d76b4655182d6ea5f6550edfc9e32bec92228e678c26fc8b16", + "digest": "74a09c2208af7316f32ee3ee8479d70b20ad54f1a989e84b6417e23c1f07c147", "distro": "debian-11", "type": "NAMI", - "version": "1.0.3-153" + "version": "1.0.3-154" }, "zookeeper": { "arch": "amd64", - "digest": "30c8c3120445eadf63d999a7f3854fc3af23cf964544dfe0ec848b03eb08d391", + "digest": "e293dcd0389aaf13a6f6e3f84c3761bd48dc605d64e99977ffbee33736685c23", "distro": "debian-11", "type": "NAMI", - "version": "3.7.1-153" + "version": "3.7.1-154" } } \ No newline at end of file diff --git a/bitnami/zookeeper/3.7/debian-11/prebuildfs/opt/bitnami/scripts/libcomponent.sh b/bitnami/zookeeper/3.7/debian-11/prebuildfs/opt/bitnami/scripts/libcomponent.sh deleted file mode 100644 index a7b60696daa6..000000000000 --- a/bitnami/zookeeper/3.7/debian-11/prebuildfs/opt/bitnami/scripts/libcomponent.sh +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/bash -# -# Library for managing Bitnami components - -# Constants -CACHE_ROOT="/tmp/bitnami/pkg/cache" -DOWNLOAD_URL="https://downloads.bitnami.com/files/stacksmith" - -# Functions - -######################## -# Download and unpack a Bitnami package -# Globals: -# OS_NAME -# OS_ARCH -# OS_FLAVOUR -# Arguments: -# $1 - component's name -# $2 - component's version -# Returns: -# None -######################### -component_unpack() { - local name="${1:?name is required}" - local version="${2:?version is required}" - local base_name="${name}-${version}-${OS_NAME}-${OS_ARCH}-${OS_FLAVOUR}" - local package_sha256="" - local directory="/opt/bitnami" - - # Validate arguments - shift 2 - while [ "$#" -gt 0 ]; do - case "$1" in - -c|--checksum) - shift - package_sha256="${1:?missing package checksum}" - ;; - *) - echo "Invalid command line flag $1" >&2 - return 1 - ;; - esac - shift - done - - echo "Downloading $base_name package" - if [ -f "${CACHE_ROOT}/${base_name}.tar.gz" ]; then - echo "${CACHE_ROOT}/${base_name}.tar.gz already exists, skipping download." - cp "${CACHE_ROOT}/${base_name}.tar.gz" . - rm "${CACHE_ROOT}/${base_name}.tar.gz" - if [ -f "${CACHE_ROOT}/${base_name}.tar.gz.sha256" ]; then - echo "Using the local sha256 from ${CACHE_ROOT}/${base_name}.tar.gz.sha256" - package_sha256="$(< "${CACHE_ROOT}/${base_name}.tar.gz.sha256")" - rm "${CACHE_ROOT}/${base_name}.tar.gz.sha256" - fi - else - curl --remote-name --silent --show-error --fail "${DOWNLOAD_URL}/${base_name}.tar.gz" - fi - if [ -n "$package_sha256" ]; then - echo "Verifying package integrity" - echo "$package_sha256 ${base_name}.tar.gz" | sha256sum --check - || return "$?" - fi - tar --directory "${directory}" --extract --gunzip --file "${base_name}.tar.gz" --no-same-owner --strip-components=2 || return "$?" - rm "${base_name}.tar.gz" -} diff --git a/bitnami/zookeeper/3.7/debian-11/rootfs/opt/bitnami/scripts/libzookeeper.sh b/bitnami/zookeeper/3.7/debian-11/rootfs/opt/bitnami/scripts/libzookeeper.sh index 36623e3b8075..b64814da76d8 100644 --- a/bitnami/zookeeper/3.7/debian-11/rootfs/opt/bitnami/scripts/libzookeeper.sh +++ b/bitnami/zookeeper/3.7/debian-11/rootfs/opt/bitnami/scripts/libzookeeper.sh @@ -197,8 +197,12 @@ zookeeper_generate_conf() { zookeeper_conf_set "$ZOO_CONF_FILE" 4lw.commands.whitelist "$ZOO_4LW_COMMANDS_WHITELIST" zookeeper_conf_set "$ZOO_CONF_FILE" maxSessionTimeout "$ZOO_MAX_SESSION_TIMEOUT" # Set log level - zookeeper_conf_set "${ZOO_CONF_DIR}/log4j.properties" zookeeper.console.threshold "$ZOO_LOG_LEVEL" - + if [ -f "${ZOO_CONF_DIR}/logback.xml" ]; then + # Zookeeper 3.8+ + xmlstarlet edit -L -u "/configuration/property[@name='zookeeper.console.threshold']/@value" -v "$ZOO_LOG_LEVEL" "${ZOO_CONF_DIR}/logback.xml" + else + zookeeper_conf_set "${ZOO_CONF_DIR}/log4j.properties" zookeeper.console.threshold "$ZOO_LOG_LEVEL" + fi # Admin web server https://zookeeper.apache.org/doc/r3.5.7/zookeeperAdmin.html#sc_adminserver zookeeper_conf_set "$ZOO_CONF_FILE" admin.serverPort "$ZOO_ADMIN_SERVER_PORT_NUMBER" zookeeper_conf_set "$ZOO_CONF_FILE" admin.enableServer "$(is_boolean_yes "$ZOO_ENABLE_ADMIN_SERVER" && echo "true" || echo "false")" @@ -421,7 +425,7 @@ QuorumServer { }; " fi - echo "${jaas_content}" > "${ZOO_CONF_DIR}/zoo_jaas.conf" + echo "${jaas_content}" >"${ZOO_CONF_DIR}/zoo_jaas.conf" zookeeper_export_jvmflags "-Djava.security.auth.login.config=${ZOO_CONF_DIR}/zoo_jaas.conf" # Restrict file permissions diff --git a/bitnami/zookeeper/README.md b/bitnami/zookeeper/README.md index 6b3f5aa4cd46..5afe53ef100f 100644 --- a/bitnami/zookeeper/README.md +++ b/bitnami/zookeeper/README.md @@ -51,7 +51,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t * [`3.8`, `3.8-debian-11`, `3.8.0`, `3.8.0-debian-11-r31`, `latest` (3.8/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/zookeeper/3.8/debian-11/Dockerfile) -* [`3.7`, `3.7-debian-11`, `3.7.1`, `3.7.1-debian-11-r34` (3.7/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/zookeeper/3.7/debian-11/Dockerfile) +* [`3.7`, `3.7-debian-11`, `3.7.1`, `3.7.1-debian-11-r35` (3.7/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/zookeeper/3.7/debian-11/Dockerfile) * [`3.6`, `3.6-debian-11`, `3.6.3`, `3.6.3-debian-11-r35` (3.6/debian-11/Dockerfile)](https://github.com/bitnami/containers/blob/main/bitnami/zookeeper/3.6/debian-11/Dockerfile) Subscribe to project updates by watching the [bitnami/containers GitHub repo](https://github.com/bitnami/containers).