[bitnami/moodle] Fix format specifier of externalDatabase.type (#9206)

Signed-off-by: Shih-Ting Huang <huangstm@gmail.com>

Co-authored-by: Shih-Ting Huang <huangstm@gmail.com>
This commit is contained in:
Mandy Huang
2022-02-25 09:59:09 +01:00
committed by GitHub
co-authored by Shih-Ting Huang
parent a3708a31a1
commit 4dfecc7393
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -25,4 +25,4 @@ name: moodle
sources:
- https://github.com/bitnami/bitnami-docker-moodle
- https://www.moodle.org/
version: 12.1.7
version: 12.1.8
+1 -1
View File
@@ -62,7 +62,7 @@ Return the Database type
{{- if .Values.mariadb.enabled }}
{{- printf "mariadb" -}}
{{- else -}}
{{- printf "%d" .Values.externalDatabase.type -}}
{{- printf "%s" .Values.externalDatabase.type -}}
{{- end -}}
{{- end -}}