diff --git a/charts/mariadb/Chart.yaml b/charts/mariadb/Chart.yaml index 9083858ba840699ef21a400e6d0b42ce20db3d4b..92a91c4d6daadbf92048e65acfe0d0983b4a48f7 100644 --- a/charts/mariadb/Chart.yaml +++ b/charts/mariadb/Chart.yaml @@ -7,6 +7,6 @@ type: application maintainers: - name: groundhog2k -version: 0.2.23 +version: 0.3.8 -appVersion: "10.5.17" +appVersion: "10.6.10" diff --git a/charts/mariadb/RELEASENOTES.md b/charts/mariadb/RELEASENOTES.md index 385f589c1a4b04d275d968869f37952c042cf57f..7eaae6a75536fa898bded03778e3ee3e9993b68b 100644 --- a/charts/mariadb/RELEASENOTES.md +++ b/charts/mariadb/RELEASENOTES.md @@ -16,6 +16,7 @@ | 0.3.5 | 10.6.8 | Upgraded MariaDB to 10.6.8 | | 0.3.6 | 10.6.9 | Upgraded MariaDB to 10.6.9 | | 0.3.7 | 10.6.10 | Upgraded MariaDB to 10.6.10 | +| 0.3.8 | 10.6.10 | Implemented support for custom inline init scripts and image.registry option | | 0.4.1 | 10.7.1 | Implemented startupProbe support | | 0.4.2 | 10.7.1 | Implemented support for extra secrets and advanced configuration capabilites | | 0.4.3 | 10.7.1 | Implemented support for extra containers | diff --git a/charts/mongodb/Chart.yaml b/charts/mongodb/Chart.yaml index 337ec8f7ebf45e9e17a04e644261759f47fd6a64..39bc9c4fa788e3504e10737c0d0aacd4daece687 100644 --- a/charts/mongodb/Chart.yaml +++ b/charts/mongodb/Chart.yaml @@ -7,6 +7,6 @@ type: application maintainers: - name: groundhog2k -version: 0.3.17 +version: 0.4.11 -appVersion: "4.4.17" +appVersion: "5.0.13" diff --git a/charts/mongodb/RELEASENOTES.md b/charts/mongodb/RELEASENOTES.md index 209c2fe113966d68c511aa636b717ac1968266fb..f8cbcb6fd4a8e6f295913dc19ab1b4cc1b95e11c 100644 --- a/charts/mongodb/RELEASENOTES.md +++ b/charts/mongodb/RELEASENOTES.md @@ -30,6 +30,7 @@ | 0.4.8 | 5.0.10 | Upgraded to MongoDB 5.0.10 | | 0.4.9 | 5.0.11 | Upgraded to MongoDB 5.0.11 | | 0.4.10 | 5.0.12 | Upgraded to MongoDB 5.0.12 | +| 0.4.11 | 5.0.13 | Upgraded to MongoDB 5.0.13 | | 0.5.0 | 6.0.1 | Upgraded to MongoDB 6.0.1 | | 0.5.1 | 6.0.1 | Implemented support for custom inline init scripts | | 0.5.2 | 6.0.1 | Implemented support for image.registry option | diff --git a/charts/mongodb/templates/statefulset.yaml b/charts/mongodb/templates/statefulset.yaml index 1bf500353cb7c98c8b16901c0cf4955100af0da2..1ae34bae3b5cb4dab89bfa00dac93e187dd2f250 100644 --- a/charts/mongodb/templates/statefulset.yaml +++ b/charts/mongodb/templates/statefulset.yaml @@ -95,7 +95,7 @@ spec: command: - /bin/sh - -c - - mongo --eval "db.adminCommand('ping')" + - mongosh --eval "db.adminCommand('ping')" {{- with .Values.startupProbe }} initialDelaySeconds: {{ .initialDelaySeconds }} timeoutSeconds: {{ .timeoutSeconds }} @@ -115,7 +115,7 @@ spec: command: - /bin/sh - -c - - mongo --eval "db.adminCommand('ping')" + - mongosh --eval "db.adminCommand('ping')" {{- with .Values.livenessProbe }} initialDelaySeconds: {{ .initialDelaySeconds }} timeoutSeconds: {{ .timeoutSeconds }} @@ -135,7 +135,7 @@ spec: command: - /bin/sh - -c - - mongo --eval "db.adminCommand('ping')" + - mongosh --eval "db.adminCommand('ping')" {{- with .Values.readinessProbe }} initialDelaySeconds: {{ .initialDelaySeconds }} timeoutSeconds: {{ .timeoutSeconds }}