From 9ca2cac8b18077cc50d9fdaeb6c8b9e5c79f2f2f Mon Sep 17 00:00:00 2001 From: Konstantin Grachev Date: Wed, 16 Nov 2022 14:23:47 +0300 Subject: [PATCH] add N8N_HOST and N8N_PORT to config --- templates/config.yaml | 2 ++ values.yaml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/templates/config.yaml b/templates/config.yaml index 3d8a009..52b2ff8 100644 --- a/templates/config.yaml +++ b/templates/config.yaml @@ -6,6 +6,8 @@ metadata: labels: {{- include "n8n.labels" . | nindent 4 }} data: + N8N_HOST: {{ .Values.config.host | quote }} + N8N_PORT: {{ .Values.config.port | quote }} WEBHOOK_URL: {{ .Values.config.webhook_url | quote }} EXECUTIONS_MODE: "queue" EXECUTIONS_PROCESS: {{ .Values.config.executions.process | quote }} diff --git a/values.yaml b/values.yaml index 94d1236..78e48e9 100644 --- a/values.yaml +++ b/values.yaml @@ -1,4 +1,6 @@ config: + host: "" + port: "5678" debug: false db_type: postgresdb postgres: