Mariadb chart updates

This PS is for improvements for wait_for_cluster mariadb job.

Change-Id: I46de32243e3aaa98b7e3e8c132a84d7b65d657cc
This commit is contained in:
Sergiy Markin 2024-11-01 16:02:19 +00:00
parent 42940f326a
commit f630c152e8
5 changed files with 9 additions and 2 deletions

View File

@ -15,7 +15,7 @@ apiVersion: v1
appVersion: v10.6.7
description: OpenStack-Helm MariaDB
name: mariadb
version: 0.2.51
version: 0.2.52
home: https://mariadb.com/kb/en/
icon: http://badges.mariadb.org/mariadb-badge-180x60.png
sources:

View File

@ -162,7 +162,7 @@ def is_mariadb_stabe():
LOG.info("The wspep is ready")
return True
except Exception as e:
LOG.error(f"Got exception while checking state. {e}")
LOG.exception(f"Got exception while checking state. {e}")
return False

View File

@ -109,6 +109,7 @@ spec:
mountPath: /etc/mysql/admin_user.cnf
subPath: admin_user.cnf
readOnly: true
{{- dict "enabled" $envAll.Values.manifests.certificates "name" $envAll.Values.secrets.tls.oslo_db.server.internal "path" "/etc/mysql/certs" | include "helm-toolkit.snippets.tls_volume_mount" | indent 12 }}
volumes:
- name: pod-tmp
emptyDir: {}
@ -120,4 +121,5 @@ spec:
secret:
secretName: mariadb-secrets
defaultMode: 0444
{{- dict "enabled" $envAll.Values.manifests.certificates "name" $envAll.Values.secrets.tls.oslo_db.server.internal | include "helm-toolkit.snippets.tls_volume" | indent 8 }}
{{- end }}

View File

@ -0,0 +1,4 @@
---
manifests:
job_cluster_wait: true
...

View File

@ -67,4 +67,5 @@ mariadb:
- 0.2.49 Remove ingress deployment
- 0.2.50 Add cluster-wait job
- 0.2.51 Add 2024.2 overrides
- 0.2.52 Added SSL support to cluster-wait job
...