mariadb dependency bump updates

This commit is contained in:
Edward Viaene
2023-03-12 16:15:56 -05:00
parent fba2313123
commit 0e34aaf55b
3 changed files with 9 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
dependencies:
- name: mariadb
repository: https://charts.bitnami.com/bitnami
version: 7.x.x
digest: sha256:faa0585b5cf41ec61a524816e0cb3a3d4067f5688a7e9db9d0e43bcc93cd9385
generated: "2021-05-28T09:38:52.288865-04:00"
version: 11.5.3
digest: sha256:eac9933177811440c86ee4c0927b729b37025c86c176ae4e834badf2f41615db
generated: "2023-03-12T16:12:25.885231-05:00"

View File

@@ -36,13 +36,13 @@ spec:
{{- end }}
- name: MYSQL_USER
{{- if .Values.mariadb.enabled }}
value: {{ .Values.mariadb.db.user | quote }}
value: {{ .Values.mariadb.auth.username | quote }}
{{- else }}
value: unknown
{{- end }}
- name: MYSQL_DATABASE
{{- if .Values.mariadb.enabled }}
value: {{ .Values.mariadb.db.name | quote }}
value: {{ .Values.mariadb.auth.database | quote }}
{{- else }}
value: unknown
{{- end }}
@@ -51,7 +51,7 @@ spec:
secretKeyRef:
{{- if .Values.mariadb.enabled }}
name: {{ template "mariadb.fullname" . }}
key: mariadb-root-password
key: mariadb-password
{{- else }}
name: unknown
key: db-password

View File

@@ -51,9 +51,9 @@ mariadb:
enabled: true
replication:
enabled: false
db:
name: app
user: app-user
auth:
database: app
username: app-user
master:
persistence:
enabled: true