diff --git a/n8n/templates/configmap.yaml b/n8n/templates/configmap.yaml index a23da73..b83e7eb 100644 --- a/n8n/templates/configmap.yaml +++ b/n8n/templates/configmap.yaml @@ -3,6 +3,7 @@ apiVersion: v1 metadata: name: {{ include "n8n.fullname" . }} data: + N8N_ENCRYPTION_KEY: {{ .Values.n8n.encryptionKey | required "encryptionKey is required to make sure u won't lose access to credentials" }} {{ if .Values.postgresql.enabled }} DB_TYPE: "postgresdb" DB_POSTGRESDB_HOST: {{ include "n8n.fullname" . }}-postgresql @@ -26,9 +27,9 @@ data: N8N_BASIC_AUTH_PASSWORD: {{ .Values.n8n.auth.password }} {{ end }} - GENERIC_TIMEZONE: {{ default .Values.n8n.timezone "UTC" }} + GENERIC_TIMEZONE: {{ .Values.n8n.timezone | default "UTC" }} - WEBHOOK_URL: {{ default .Values.n8n.webhook_url "http://localhost" }} + WEBHOOK_URL: {{ .Values.n8n.webhookUrl | default "http://localhost" }} EXECUTIONS_MODE: "queue" N8N_DISABLE_PRODUCTION_MAIN_PROCESS: "true" N8N_SKIP_WEBHOOK_DEREGISTRATION_SHUTDOWN: "true"