[bitnami/mongodb-sharded] Release 6.0.5-debian-11-r8 (#30265)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2023-04-14 00:49:11 +02:00 committed by GitHub
parent 1998772fd8
commit 3ad2733a1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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-10T20:42:07Z" \
org.opencontainers.image.created="2023-04-13T21:54:20Z" \
org.opencontainers.image.description="Application packaged by VMware, Inc" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="6.0.5-debian-11-r7" \
org.opencontainers.image.ref.name="6.0.5-debian-11-r8" \
org.opencontainers.image.title="mongodb-sharded" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="6.0.5"
@ -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-6.0.5-3-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.