Compare commits
2 Commits
0.1.17
...
c2c9255462
Author | SHA1 | Date | |
---|---|---|---|
c2c9255462
|
|||
9ca2cac8b1
|
@ -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 }}
|
@ -4,6 +4,8 @@ metadata:
|
||||
name: {{ include "n8n.fullname" . }}
|
||||
labels:
|
||||
{{- include "n8n.labels" . | nindent 4 }}
|
||||
annotations:
|
||||
checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
|
@ -4,6 +4,8 @@ metadata:
|
||||
name: {{ include "n8n.fullname" . }}-webhook
|
||||
labels:
|
||||
{{- include "n8n.labels" . | nindent 4 }}
|
||||
annotations:
|
||||
checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
|
||||
spec:
|
||||
{{- if not .Values.webhook.autoscaling.enabled }}
|
||||
replicas: {{ .Values.webhook.replicaCount }}
|
||||
|
@ -4,6 +4,8 @@ metadata:
|
||||
name: {{ include "n8n.fullname" . }}-worker
|
||||
labels:
|
||||
{{- include "n8n.labels" . | nindent 4 }}
|
||||
annotations:
|
||||
checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
|
||||
spec:
|
||||
{{- if not .Values.worker.autoscaling.enabled }}
|
||||
replicas: {{ .Values.worker.replicaCount }}
|
||||
|
@ -1,4 +1,6 @@
|
||||
config:
|
||||
host: ""
|
||||
port: "5678"
|
||||
debug: false
|
||||
db_type: postgresdb
|
||||
postgres:
|
||||
|
Reference in New Issue
Block a user