diff --git a/bookstack-helm/templates/db.yaml b/bookstack-helm/templates/db.yaml index d62e2b2..f4c66e8 100644 --- a/bookstack-helm/templates/db.yaml +++ b/bookstack-helm/templates/db.yaml @@ -70,7 +70,7 @@ spec: command: - sh - "-c" - - "mariab -uroot -p$MYSQL_ROOT_PASSWORD -e 'SELECT 1'" + - "mariadb -uroot -p$MYSQL_ROOT_PASSWORD -e 'SELECT 1'" initialDelaySeconds: {{ .Values.bookstack.db.readinessProbeInitialDelaySeconds }} {{- end }} {{- if .Values.bookstack.db.enableLivenessProbe }} @@ -79,7 +79,7 @@ spec: command: - sh - "-c" - - "mariab -uroot -p$MYSQL_ROOT_PASSWORD -e 'SELECT 1'" + - "mariadb -uroot -p$MYSQL_ROOT_PASSWORD -e 'SELECT 1'" initialDelaySeconds: {{ .Values.bookstack.db.livenessProbeInitialDelaySeconds }} periodSeconds: {{ .Values.bookstack.db.livenessProbePeriodSeconds }} {{- end }}