10.6.7-debian-10-r34 release

This commit is contained in:
Bitnami Bot
2022-03-26 02:10:01 +00:00
parent 30ab68f413
commit d1b7f3fb9a
5 changed files with 5 additions and 8 deletions

View File

@@ -21,7 +21,7 @@ COPY rootfs /
RUN /opt/bitnami/scripts/mariadb-galera/postunpack.sh
ENV APP_VERSION="10.6.7" \
BITNAMI_APP_NAME="mariadb-galera" \
BITNAMI_IMAGE_VERSION="10.6.7-debian-10-r33" \
BITNAMI_IMAGE_VERSION="10.6.7-debian-10-r34" \
PATH="/opt/bitnami/common/bin:/opt/bitnami/mariadb/bin:/opt/bitnami/mariadb/sbin:$PATH"
EXPOSE 3306 4444 4567 4568

View File

@@ -392,10 +392,6 @@ web_server_update_app_configuration() {
--hosts \
| --server-name \
| --server-aliases \
| --enable-http \
| --enable-https \
| --disable-http \
| --disable-https \
| --http-port \
| --https-port \
)

View File

@@ -2,7 +2,7 @@
#
# Bitnami MySQL Galera library
# shellcheck disable=SC1090,SC1091
# shellcheck disable=SC1090,SC1091,SC2119,SC2120
. /opt/bitnami/scripts/liblog.sh
. /opt/bitnami/scripts/libfs.sh
@@ -51,7 +51,7 @@ set_previous_boot() {
#########################
mysql_extra_flags() {
local -a dbExtraFlags=()
read -r -a userExtraFlags <<< "$DB_EXTRA_FLAGS"
read -r -a userExtraFlags <<< "${DB_EXTRA_FLAGS?}"
# This avoids a non-writable configuration file break a Galera Cluster, due to lack of proper Galera clustering configuration
# This is especially important for the MariaDB Galera chart, in which the 'my.cnf' configuration file is mounted by default

View File

@@ -9,6 +9,7 @@
# 4. Environment variables set externally (i.e. current Bash context/Dockerfile/userdata)
# Load logging library
# shellcheck disable=SC1090,SC1091
. /opt/bitnami/scripts/liblog.sh
export BITNAMI_ROOT_DIR="/opt/bitnami"