[bitnami/valkey-sentinel] Release valkey-sentinel-8.0.1-debian-12-r3 (#74697)

Signed-off-by: Bitnami Bot <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2024-11-10 02:04:39 +01:00 committed by GitHub
parent a0ed528428
commit b098e366ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View File

@ -8,11 +8,11 @@ ARG TARGETARCH
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2024-10-24T18:30:02Z" \
org.opencontainers.image.created="2024-11-10T00:26:33Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/valkey-sentinel/README.md" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="8.0.1-debian-12-r2" \
org.opencontainers.image.ref.name="8.0.1-debian-12-r3" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/valkey-sentinel" \
org.opencontainers.image.title="valkey-sentinel" \
org.opencontainers.image.vendor="Broadcom, Inc." \

View File

@ -229,7 +229,8 @@ valkey_initialize() {
valkey_conf_set "sentinel announce-hostnames" "${VALKEY_SENTINEL_ANNOUNCE_HOSTNAMES}"
fi
# This directive is only available in Valkey 7
[[ $(valkey_version --major) -ge 7 ]] && valkey_conf_set "SENTINEL primary-reboot-down-after-period" "${VALKEY_PRIMARY_SET} ${VALKEY_SENTINEL_PRIMARY_REBOOT_DOWN_AFTER_PERIOD}"
[[ $(valkey_version --major) -eq 7 ]] && valkey_conf_set "SENTINEL master-reboot-down-after-period" "${VALKEY_PRIMARY_SET} ${VALKEY_SENTINEL_PRIMARY_REBOOT_DOWN_AFTER_PERIOD}"
[[ $(valkey_version --major) -ge 8 ]] && valkey_conf_set "SENTINEL primary-reboot-down-after-period" "${VALKEY_PRIMARY_SET} ${VALKEY_SENTINEL_PRIMARY_REBOOT_DOWN_AFTER_PERIOD}"
# Sentinel Configuration (maybe overwritten by more specific init blocks like TLS configuration)
valkey_conf_set port "$VALKEY_SENTINEL_PORT_NUMBER"