From 2f8a794cf8a599cb2b32018989819d039ceff5c7 Mon Sep 17 00:00:00 2001 From: Goeran Poehner <goeran.poehner@gmail.com> Date: Sun, 16 Jul 2023 11:47:13 +0200 Subject: [PATCH] Updated mariadb chart and healthcheck for MariaDB 11.0.2 --- charts/mariadb/Chart.yaml | 4 ++-- charts/mariadb/README.md | 2 +- charts/mariadb/RELEASENOTES.md | 1 + charts/mariadb/templates/statefulset.yaml | 6 +++--- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/charts/mariadb/Chart.yaml b/charts/mariadb/Chart.yaml index 3a83a10f..daa39bd0 100644 --- a/charts/mariadb/Chart.yaml +++ b/charts/mariadb/Chart.yaml @@ -7,6 +7,6 @@ type: application maintainers: - name: groundhog2k -version: "0.8.5" +version: "0.9.0" -appVersion: "10.11.4" +appVersion: "11.0.2" diff --git a/charts/mariadb/README.md b/charts/mariadb/README.md index f8ad0ec2..3247baeb 100644 --- a/charts/mariadb/README.md +++ b/charts/mariadb/README.md @@ -1,6 +1,6 @@ # MariaDB -   +   ## Changelog diff --git a/charts/mariadb/RELEASENOTES.md b/charts/mariadb/RELEASENOTES.md index e58290f5..b0a1e11a 100644 --- a/charts/mariadb/RELEASENOTES.md +++ b/charts/mariadb/RELEASENOTES.md @@ -62,4 +62,5 @@ | 0.8.3 | 10.11.2 | Updated default security context | | 0.8.4 | 10.11.3 | Upgraded MariaDB to 10.11.3 | | 0.8.5 | 10.11.4 | Upgraded MariaDB to 10.11.4 | +| 0.9.0 | 11.0.2 | Upgraded MariaDB to 11.0.2 | | | | | diff --git a/charts/mariadb/templates/statefulset.yaml b/charts/mariadb/templates/statefulset.yaml index 6330b007..6dbaa34e 100644 --- a/charts/mariadb/templates/statefulset.yaml +++ b/charts/mariadb/templates/statefulset.yaml @@ -110,7 +110,7 @@ spec: command: - bash - -c - - mysqladmin status -uroot -p$MARIADB_ROOT_PASSWORD + - healthcheck.sh --connect --innodb_initialized {{- with .Values.startupProbe }} initialDelaySeconds: {{ .initialDelaySeconds }} timeoutSeconds: {{ .timeoutSeconds }} @@ -130,7 +130,7 @@ spec: command: - bash - -c - - mysqladmin status -uroot -p$MARIADB_ROOT_PASSWORD + - healthcheck.sh --connect --innodb_initialized {{- with .Values.livenessProbe }} initialDelaySeconds: {{ .initialDelaySeconds }} timeoutSeconds: {{ .timeoutSeconds }} @@ -150,7 +150,7 @@ spec: command: - bash - -c - - mysqladmin status -uroot -p$MARIADB_ROOT_PASSWORD + - healthcheck.sh --connect --innodb_initialized {{- with .Values.readinessProbe }} initialDelaySeconds: {{ .initialDelaySeconds }} timeoutSeconds: {{ .timeoutSeconds }} -- GitLab