fix(mariadb): correctly use passwords when running the App directly

This commit is contained in:
kjeld Schouten-Lebbing
2021-11-21 16:21:55 +01:00
parent 3578cb37b9
commit 62daa881b6
2 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ sources:
- https://github.com/prometheus/mysqld_exporter
- https://mariadb.org
type: application
version: 1.0.5
version: 1.0.6
annotations:
truecharts.org/catagories: |
- database

View File

@@ -10,5 +10,5 @@ metadata:
{{- end }}
type: Opaque
data:
mariadb-password: {{ ( .Values.postgresqlPassword | default "empty" ) | b64enc | quote }}
mariadb-root-password: {{ ( .Values.postgrespassword | default "empty" ) | b64enc | quote }}
mariadb-password: {{ ( .Values.mariadbPassword | default "empty" ) | b64enc | quote }}
mariadb-root-password: {{ ( .Values.mariadbRootPassword | default "empty" ) | b64enc | quote }}