[bitnami/mongodb-sharded] Release 5.0.16-debian-11-r1 (#30330)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot
2023-04-14 05:57:17 +02:00
committed by GitHub
parent f7dce28172
commit 3bf941e795
3 changed files with 5 additions and 5 deletions

View File

@@ -3,10 +3,10 @@ FROM docker.io/bitnami/minideb:bullseye
ARG TARGETARCH
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
org.opencontainers.image.created="2023-04-10T23:13:18Z" \
org.opencontainers.image.created="2023-04-14T03:06:30Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="5.0.16-debian-11-r0" \
org.opencontainers.image.ref.name="5.0.16-debian-11-r1" \
org.opencontainers.image.title="mongodb-sharded" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="5.0.16"
@@ -23,7 +23,7 @@ RUN install_packages ca-certificates curl libbrotli1 libcom-err2 libcurl4 libffi
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
COMPONENTS=( \
"mongodb-shell-1.8.0-3-linux-${OS_ARCH}-debian-11" \
"yq-4.33.2-0-linux-${OS_ARCH}-debian-11" \
"yq-4.33.3-0-linux-${OS_ARCH}-debian-11" \
"wait-for-port-1.0.6-4-linux-${OS_ARCH}-debian-11" \
"render-template-1.0.5-4-linux-${OS_ARCH}-debian-11" \
"mongodb-5.0.16-0-linux-${OS_ARCH}-debian-11" \

View File

@@ -33,6 +33,6 @@
"arch": "amd64",
"distro": "debian-11",
"type": "NAMI",
"version": "4.33.2-0"
"version": "4.33.3-0"
}
}

View File

@@ -939,7 +939,7 @@ mongodb_is_hidden_node_pending() {
debug "Adding hidden node ${node}:${port}"
result=$(
mongodb_execute_print_output "$MONGODB_INITIAL_PRIMARY_ROOT_USER" "$MONGODB_INITIAL_PRIMARY_ROOT_PASSWORD" "admin" "$MONGODB_INITIAL_PRIMARY_HOST" "$MONGODB_INITIAL_PRIMARY_PORT_NUMBER" <<EOF
rs.add({host: '$node:$port', hidden: true, priority: 0})
rs.add({host: '$node:$port', hidden: true, priority: 0, votes: 0})
EOF
)
# Error code 103 is considered OK.