Skip to content

Commit

Permalink
Update configmap.yaml - fix quoting of conditional (#45)
Browse files Browse the repository at this point in the history
This was causing this section to be rendered even if conditional was not met.
  • Loading branch information
jessebot authored Nov 3, 2023
1 parent 3c2ee22 commit fe8769f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/vaultwarden/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ metadata:
{{- include "vaultwarden.labels" . | nindent 4 }}
data:
DOMAIN: {{ .Values.domain | quote }}
{{- if and .Values.smtp.host .Values.smtp.from | quote }}
{{- if and .Values.smtp.host .Values.smtp.from }}
SMTP_HOST: {{ .Values.smtp.host | quote }}
SMTP_SECURITY: {{ .Values.smtp.security | quote }}
SMTP_PORT: {{ .Values.smtp.port | quote }}
Expand Down

0 comments on commit fe8769f

Please sign in to comment.