[bitnami/etcd] Release 3.6.1-debian-12-r1 (#82218)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot
2025-06-11 18:08:16 +02:00
committed by GitHub
parent ec42016246
commit bfe0c6aa4a
2 changed files with 3 additions and 5 deletions

View File

@@ -8,10 +8,10 @@ ARG TARGETARCH
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2025-06-06T21:32:40Z" \
org.opencontainers.image.created="2025-06-11T15:51:41Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/etcd/README.md" \
org.opencontainers.image.ref.name="3.6.1-debian-12-r0" \
org.opencontainers.image.ref.name="3.6.1-debian-12-r1" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/etcd" \
org.opencontainers.image.title="etcd" \
org.opencontainers.image.vendor="Broadcom, Inc." \

View File

@@ -629,10 +629,8 @@ etcd_initialize() {
if is_boolean_yes "$ETCD_START_FROM_SNAPSHOT"; then
if [[ -f "${ETCD_INIT_SNAPSHOTS_DIR}/${ETCD_INIT_SNAPSHOT_FILENAME}" ]]; then
info "Restoring snapshot before initializing etcd cluster"
#
# Only recalculate the initial cluster config if it hasn't
# been provided.
#
if is_empty_value "$ETCD_INITIAL_CLUSTER"; then
ETCD_INITIAL_CLUSTER="$(recalculate_initial_cluster)"
export ETCD_INITIAL_CLUSTER
@@ -642,7 +640,7 @@ etcd_initialize() {
local -a restore_args=(
"--data-dir" "$ETCD_DATA_DIR"
"--name" "$ETCD_NAME"
"--name" "$ETCD_NAME"
"--initial-cluster" "$ETCD_INITIAL_CLUSTER"
"--initial-cluster-token" "$ETCD_INITIAL_CLUSTER_TOKEN"
"--initial-advertise-peer-urls" "$ETCD_INITIAL_ADVERTISE_PEER_URLS"