[bitnami/redmine] Missing env var in cronjob.yaml (#7386)

mail-receiver-configmap.yaml reference $REDMINE_DATABASE_TYPE variable but this variable is never defined in cronjob.yaml
This commit is contained in:
Vincent Sourin
2021-09-07 08:29:39 +02:00
committed by GitHub
parent e0a27b4c05
commit 04f41bda9c
2 changed files with 3 additions and 1 deletions

View File

@@ -36,4 +36,4 @@ name: redmine
sources:
- https://github.com/bitnami/bitnami-docker-redmine
- http://www.redmine.org/
version: 17.0.6
version: 17.0.7

View File

@@ -84,6 +84,8 @@ spec:
{{- end }}
resources: {{- toYaml .Values.mailReceiver.resources | nindent 16 }}
env:
- name: REDMINE_DATABASE_TYPE
value: {{ .Values.databaseType | quote }}
{{- if eq .Values.databaseType "mariadb" }}
- name: REDMINE_MAIL_RECEIVER_DB_MYSQL
{{- else }}