Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
3f46388a06
|
|||
3c787efb0a
|
@ -6,7 +6,6 @@ metadata:
|
|||||||
labels:
|
labels:
|
||||||
{{- include "n8n.labels" . | nindent 4 }}
|
{{- include "n8n.labels" . | nindent 4 }}
|
||||||
data:
|
data:
|
||||||
NODE_ENV: {{ .Values.config.node_env | quote }}
|
|
||||||
WEBHOOK_URL: {{ .Values.config.webhook_url | quote }}
|
WEBHOOK_URL: {{ .Values.config.webhook_url | quote }}
|
||||||
EXECUTIONS_MODE: "queue"
|
EXECUTIONS_MODE: "queue"
|
||||||
EXECUTIONS_PROCESS: {{ .Values.config.executions.process | quote }}
|
EXECUTIONS_PROCESS: {{ .Values.config.executions.process | quote }}
|
||||||
|
@ -32,6 +32,9 @@ spec:
|
|||||||
{{- toYaml .Values.webhook.securityContext | nindent 12 }}
|
{{- toYaml .Values.webhook.securityContext | nindent 12 }}
|
||||||
image: "{{ .Values.webhook.image.registry }}/{{ .Values.webhook.image.repository }}:{{ .Values.webhook.image.tag | default .Chart.AppVersion }}"
|
image: "{{ .Values.webhook.image.registry }}/{{ .Values.webhook.image.repository }}:{{ .Values.webhook.image.tag | default .Chart.AppVersion }}"
|
||||||
imagePullPolicy: {{ .Values.webhook.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.webhook.image.pullPolicy }}
|
||||||
|
command:
|
||||||
|
- n8n
|
||||||
|
- webhook
|
||||||
envFrom:
|
envFrom:
|
||||||
- configMapRef:
|
- configMapRef:
|
||||||
name: {{ include "n8n.fullname" . }}
|
name: {{ include "n8n.fullname" . }}
|
||||||
|
@ -32,6 +32,9 @@ spec:
|
|||||||
{{- toYaml .Values.worker.securityContext | nindent 12 }}
|
{{- toYaml .Values.worker.securityContext | nindent 12 }}
|
||||||
image: "{{ .Values.worker.image.registry }}/{{ .Values.worker.image.repository }}:{{ .Values.worker.image.tag | default .Chart.AppVersion }}"
|
image: "{{ .Values.worker.image.registry }}/{{ .Values.worker.image.repository }}:{{ .Values.worker.image.tag | default .Chart.AppVersion }}"
|
||||||
imagePullPolicy: {{ .Values.worker.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.worker.image.pullPolicy }}
|
||||||
|
command:
|
||||||
|
- n8n
|
||||||
|
- worker
|
||||||
envFrom:
|
envFrom:
|
||||||
- configMapRef:
|
- configMapRef:
|
||||||
name: {{ include "n8n.fullname" . }}
|
name: {{ include "n8n.fullname" . }}
|
||||||
|
@ -11,7 +11,6 @@ config:
|
|||||||
encryption_key: ""
|
encryption_key: ""
|
||||||
timezone: Europe/Moscow
|
timezone: Europe/Moscow
|
||||||
webhook_url: ""
|
webhook_url: ""
|
||||||
node_env: production
|
|
||||||
executions:
|
executions:
|
||||||
process: main
|
process: main
|
||||||
data:
|
data:
|
||||||
|
Reference in New Issue
Block a user