3.5.0-debian-10-r93 release
This commit is contained in:
parent
83eab08c3e
commit
f0706cae76
|
|
@ -17,7 +17,7 @@ RUN chmod g+rwX /opt/bitnami
|
|||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/etcd/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="etcd" \
|
||||
BITNAMI_IMAGE_VERSION="3.5.0-debian-10-r92" \
|
||||
BITNAMI_IMAGE_VERSION="3.5.0-debian-10-r93" \
|
||||
ETCDCTL_API="3"
|
||||
|
||||
EXPOSE 2379 2380
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ export BITNAMI_DEBUG="${BITNAMI_DEBUG:-false}"
|
|||
# By setting an environment variable matching *_FILE to a file path, the prefixed environment
|
||||
# variable will be overridden with the value specified in that file
|
||||
etcd_env_vars=(
|
||||
ETCD_INIT_SNAPSHOTS_DIR
|
||||
ALLOW_NONE_AUTHENTICATION
|
||||
ETCD_ROOT_PASSWORD
|
||||
ETCD_CLUSTER_DOMAIN
|
||||
|
|
@ -28,7 +29,6 @@ etcd_env_vars=(
|
|||
ETCD_DISASTER_RECOVERY
|
||||
ETCD_ON_K8S
|
||||
ETCD_INIT_SNAPSHOT_FILENAME
|
||||
ETCD_INIT_SNAPSHOTS_DIR
|
||||
ETCDCTL_API
|
||||
ETCD_NAME
|
||||
ETCD_LOG_LEVEL
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ etcd_validate() {
|
|||
is_empty_value "$ETCD_ROOT_PASSWORD" && print_validation_error "The ETCD_ROOT_PASSWORD environment variable is empty or not set. Set the environment variable ALLOW_NONE_AUTHENTICATION=yes to allow a blank password. This is only recommended for development environments."
|
||||
fi
|
||||
if is_boolean_yes "$ETCD_START_FROM_SNAPSHOT" && [[ ! -f "${ETCD_INIT_SNAPSHOTS_DIR}/${ETCD_INIT_SNAPSHOT_FILENAME}" ]]; then
|
||||
print_validation_error "You are trying to initialize etcd from a snapshot, but no snapshot was found. Set the environment variable ETCD_INIT_SNAPSHOT_FILENAME with the snapshot filename and mount it at '/init-snapshot' directory."
|
||||
print_validation_error "You are trying to initialize etcd from a snapshot, but no snapshot was found. Set the environment variable ETCD_INIT_SNAPSHOT_FILENAME with the snapshot filename and mount it at '${ETCD_INIT_SNAPSHOTS_DIR}' directory."
|
||||
fi
|
||||
|
||||
[[ "$error_code" -eq 0 ]] || return "$error_code"
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ Non-root container images add an extra layer of security and are generally recom
|
|||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`3`, `3-debian-10`, `3.5.0`, `3.5.0-debian-10-r92`, `latest` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-etcd/blob/3.5.0-debian-10-r92/3/debian-10/Dockerfile)
|
||||
* [`3`, `3-debian-10`, `3.5.0`, `3.5.0-debian-10-r93`, `latest` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-etcd/blob/3.5.0-debian-10-r93/3/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/etcd GitHub repo](https://github.com/bitnami/bitnami-docker-etcd).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue