[bitnami/redis-cluster] Release 6.2.10-debian-11-r8 (#23326)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot
2023-02-08 22:41:23 +01:00
committed by GitHub
parent 26f6f56149
commit 19c84e54ed
3 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ ARG TARGETARCH
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="6.2.10-debian-11-r7" \
org.opencontainers.image.ref.name="6.2.10-debian-11-r8" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/redis-cluster" \
org.opencontainers.image.title="redis-cluster" \
org.opencontainers.image.vendor="VMware, Inc." \

View File

@@ -1,3 +1,3 @@
Bitnami containers ship with software bundles. You can find the licenses under:
/opt/bitnami/nami/COPYING
Bitnami containers ship with software bundles. You can find the licenses at:
https://bitnami.com/open-source
/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt

View File

@@ -137,7 +137,7 @@ redis_cluster_create() {
for node in "${nodes[@]}"; do
read -r -a host_and_port <<< "$(to_host_and_port "$node")"
wait_command="redis-cli -h ${host_and_port[0]} -p ${host_and_port[1]} ping"
wait_command="timeout -v 5 redis-cli -h ${host_and_port[0]} -p ${host_and_port[1]} ping"
if is_boolean_yes "$REDIS_TLS_ENABLED"; then
wait_command="${wait_command:0:-5} --tls --cert ${REDIS_TLS_CERT_FILE} --key ${REDIS_TLS_KEY_FILE} --cacert ${REDIS_TLS_CA_FILE} ping"
fi