mirror of
https://github.com/outbackdingo/n8n-chart.git
synced 2026-08-25 14:53:31 +00:00
fix: some typos on env configs
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user