[bitnami/redis-cluster] Release 7.0.12-debian-11-r25 (#44054)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
e094005dff
commit
cde0a8555f
|
|
@ -7,10 +7,10 @@ ARG TARGETARCH
|
|||
|
||||
LABEL com.vmware.cp.artifact.flavor="sha256:1e1b4657a77f0d47e9220f0c37b9bf7802581b93214fff7d1bd2364c8bf22e8e" \
|
||||
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
|
||||
org.opencontainers.image.created="2023-08-05T18:43:12Z" \
|
||||
org.opencontainers.image.created="2023-08-07T22:02:06Z" \
|
||||
org.opencontainers.image.description="Application packaged by VMware, Inc" \
|
||||
org.opencontainers.image.licenses="Apache-2.0" \
|
||||
org.opencontainers.image.ref.name="7.0.12-debian-11-r23" \
|
||||
org.opencontainers.image.ref.name="7.0.12-debian-11-r25" \
|
||||
org.opencontainers.image.title="redis-cluster" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="7.0.12"
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ redis_conf_set() {
|
|||
[[ "$value" = "" ]] && value="\"$value\""
|
||||
|
||||
# Determine whether to enable the configuration for RDB persistence, if yes, do not enable the replacement operation
|
||||
if [ "${key}" == "save" ]; then
|
||||
if [ "${key}" == "save" ];then
|
||||
echo "${key} ${value}" >> "${REDIS_BASE_DIR}/etc/redis.conf"
|
||||
else
|
||||
replace_in_file "${REDIS_BASE_DIR}/etc/redis.conf" "^#*\s*${key} .*" "${key} ${value}" false
|
||||
|
|
@ -408,14 +408,12 @@ redis_configure_default() {
|
|||
redis_conf_set appendonly "${REDIS_AOF_ENABLED}"
|
||||
|
||||
#The value stored in $i here is the number of seconds and times of save rules in redis rdb mode
|
||||
if is_empty_value "$REDIS_RDB_POLICY"; then
|
||||
if is_boolean_yes "$REDIS_RDB_POLICY_DISABLED"; then
|
||||
redis_conf_set save ""
|
||||
fi
|
||||
if [ -z "${REDIS_RDB_POLICY}" ];then
|
||||
redis_conf_set save ""
|
||||
else
|
||||
for i in ${REDIS_RDB_POLICY}; do
|
||||
redis_conf_set save "${i//#/ }"
|
||||
done
|
||||
for i in ${REDIS_RDB_POLICY};do
|
||||
redis_conf_set save "${i//#/ }"
|
||||
done
|
||||
fi
|
||||
|
||||
redis_conf_set port "$REDIS_PORT_NUMBER"
|
||||
|
|
|
|||
Loading…
Reference in New Issue