Skip to content

Commit

Permalink
fix boolean preventing chart from rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
johnjeffers committed Apr 27, 2024
1 parent ad7fe1c commit c4cf0dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ spec:
value: {{ .Values.app.memory }}
- name: FUSIONAUTH_APP_RUNTIME_MODE
value: {{ .Values.app.runtimeMode }}
{{- if not (regexMatch "name:FUSIONAUTH_APP_SILENT_MODE(\\s|\\])" (toString .Values.environment)) }}
{{- if not (contains "FUSIONAUTH_APP_SILENT_MODE" (toString .Values.environment)) }}
- name: FUSIONAUTH_APP_SILENT_MODE
value: {{ .Values.app.silentMode }}
value: {{ .Values.app.silentMode | quote }}
{{- end }}
{{- if .Values.kickstart.enabled }}
- name: FUSIONAUTH_APP_KICKSTART_FILE
Expand Down

0 comments on commit c4cf0dd

Please sign in to comment.