Skip to content

Commit

Permalink
chore(n8n): improve configmap (#2516)
Browse files Browse the repository at this point in the history
  • Loading branch information
stavros-k authored Apr 19, 2022
1 parent 24f9063 commit dd62d8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/stable/n8n/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sources:
- https://docs.n8n.io/
- https://github.com/n8n-io/n8n
- https://hub.docker.com/r/n8nio/n8n
version: 2.0.20
version: 2.0.21
annotations:
truecharts.org/catagories: |
- media
Expand Down
8 changes: 4 additions & 4 deletions charts/stable/n8n/templates/_configmap.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ data:
{{- if .Values.executions.EXECUTIONS_MODE }}
EXECUTIONS_MODE: {{ .Values.executions.EXECUTIONS_MODE | quote }}
{{- end }}
{{- if .Values.executions.EXECUTIONS_TIMEOUT }}
{{- if or .Values.executions.EXECUTIONS_TIMEOUT ( eq 0 .Values.executions.EXECUTIONS_TIMEOUT ) }}
EXECUTIONS_TIMEOUT: {{ .Values.executions.EXECUTIONS_TIMEOUT | quote }}
{{- end }}
{{- if .Values.executions.EXECUTIONS_TIMEOUT_MAX }}
{{- if or .Values.executions.EXECUTIONS_TIMEOUT_MAX ( eq 0 .Values.executions.EXECUTIONS_TIMEOUT_MAX ) }}
EXECUTIONS_TIMEOUT_MAX: {{ .Values.executions.EXECUTIONS_TIMEOUT_MAX | quote }}
{{- end }}
{{- if .Values.executions.EXECUTIONS_DATA_SAVE_ON_ERROR }}
Expand All @@ -94,10 +94,10 @@ data:
{{- if .Values.executions.EXECUTIONS_DATA_PRUNE }}
EXECUTIONS_DATA_PRUNE: {{ .Values.executions.EXECUTIONS_DATA_PRUNE | quote }}
{{- end }}
{{- if .Values.executions.EXECUTIONS_DATA_MAX_AGE }}
{{- if or .Values.executions.EXECUTIONS_DATA_MAX_AGE ( eq 0 .Values.executions.EXECUTIONS_DATA_MAX_AGE ) }}
EXECUTIONS_DATA_MAX_AGE: {{ .Values.executions.EXECUTIONS_DATA_MAX_AGE | quote }}
{{- end }}
{{- if .Values.executions.EXECUTIONS_DATA_PRUNE_TIMEOUT }}
{{- if or .Values.executions.EXECUTIONS_DATA_PRUNE_TIMEOUT ( eq 0 .Values.executions.EXECUTIONS_DATA_PRUNE_TIMEOUT ) }}
EXECUTIONS_DATA_PRUNE_TIMEOUT: {{ .Values.executions.EXECUTIONS_DATA_PRUNE_TIMEOUT | quote }}
{{- end }}
{{/* Endpoints */}}
Expand Down

0 comments on commit dd62d8c

Please sign in to comment.