mirror of
https://github.com/bitnami/containers.git
synced 2026-03-15 14:58:17 +08:00
[bitnami/percona-mysql] Release percona-mysql-8.1.0-1-debian-12-r31 (#71589)
Signed-off-by: Bitnami Bot <bitnami-bot@vmware.com>
This commit is contained in:
@@ -7,11 +7,11 @@ ARG TARGETARCH
|
|||||||
|
|
||||||
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
|
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
|
||||||
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
|
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
|
||||||
org.opencontainers.image.created="2024-08-21T14:58:57Z" \
|
org.opencontainers.image.created="2024-09-01T06:23:07Z" \
|
||||||
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
|
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
|
||||||
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/percona-mysql/README.md" \
|
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/percona-mysql/README.md" \
|
||||||
org.opencontainers.image.licenses="Apache-2.0" \
|
org.opencontainers.image.licenses="Apache-2.0" \
|
||||||
org.opencontainers.image.ref.name="8.1.0-1-debian-12-r30" \
|
org.opencontainers.image.ref.name="8.1.0-1-debian-12-r31" \
|
||||||
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/percona-mysql" \
|
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/percona-mysql" \
|
||||||
org.opencontainers.image.title="percona-mysql" \
|
org.opencontainers.image.title="percona-mysql" \
|
||||||
org.opencontainers.image.vendor="Broadcom, Inc." \
|
org.opencontainers.image.vendor="Broadcom, Inc." \
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
# Copyright Broadcom, Inc. All Rights Reserved.
|
# Copyright Broadcom, Inc. All Rights Reserved.
|
||||||
# SPDX-License-Identifier: APACHE-2.0
|
# SPDX-License-Identifier: APACHE-2.0
|
||||||
|
|
||||||
version: '2.1'
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
primary:
|
primary:
|
||||||
image: docker.io/bitnami/percona-mysql:8.1
|
image: docker.io/bitnami/percona-mysql:8.1
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
# Copyright Broadcom, Inc. All Rights Reserved.
|
# Copyright Broadcom, Inc. All Rights Reserved.
|
||||||
# SPDX-License-Identifier: APACHE-2.0
|
# SPDX-License-Identifier: APACHE-2.0
|
||||||
|
|
||||||
version: '2.1'
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
percona-mysql:
|
percona-mysql:
|
||||||
image: docker.io/bitnami/percona-mysql:8.1
|
image: docker.io/bitnami/percona-mysql:8.1
|
||||||
|
|||||||
@@ -1334,14 +1334,14 @@ find_jemalloc_lib() {
|
|||||||
########################
|
########################
|
||||||
# Execute a reliable health check against the current mysql instance
|
# Execute a reliable health check against the current mysql instance
|
||||||
# Globals:
|
# Globals:
|
||||||
# DB_ROOT_PASSWORD, DB_MASTER_ROOT_PASSWORD
|
# DB_ROOT_USER, DB_ROOT_PASSWORD, DB_MASTER_ROOT_PASSWORD
|
||||||
# Arguments:
|
# Arguments:
|
||||||
# None
|
# None
|
||||||
# Returns:
|
# Returns:
|
||||||
# mysqladmin output
|
# mysqladmin output
|
||||||
#########################
|
#########################
|
||||||
mysql_healthcheck() {
|
mysql_healthcheck() {
|
||||||
local args=("-uroot" "-h0.0.0.0")
|
local args=("-u${DB_ROOT_USER}" "-h0.0.0.0")
|
||||||
local root_password
|
local root_password
|
||||||
|
|
||||||
root_password="$(get_master_env_var_value ROOT_PASSWORD)"
|
root_password="$(get_master_env_var_value ROOT_PASSWORD)"
|
||||||
@@ -1404,9 +1404,7 @@ mysql_client_extra_opts() {
|
|||||||
done
|
done
|
||||||
else
|
else
|
||||||
# Skip SSL validation
|
# Skip SSL validation
|
||||||
if [[ "$(mysql_client_flavor)" = "mysql" ]]; then
|
if [[ "$(mysql_client_flavor)" = "mariadb" ]]; then
|
||||||
opts+=("--ssl-mode=DISABLED")
|
|
||||||
else
|
|
||||||
# SSL connections are enabled by default in MariaDB >=10.11
|
# SSL connections are enabled by default in MariaDB >=10.11
|
||||||
local mysql_version=""
|
local mysql_version=""
|
||||||
local major_version=""
|
local major_version=""
|
||||||
|
|||||||
Reference in New Issue
Block a user