Skip to content

Commit

Permalink
fix (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-otten authored Feb 4, 2025
1 parent 8a39e91 commit f3977f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bookstack-helm/templates/db.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down

0 comments on commit f3977f2

Please sign in to comment.