Compare commits
4 Commits
61f92c0075
...
0.1.11
Author | SHA1 | Date | |
---|---|---|---|
00d1b8dcf0
|
|||
0fa2dac744
|
|||
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" . }}
|
||||||
|
10
values.yaml
10
values.yaml
@ -1,5 +1,5 @@
|
|||||||
config:
|
config:
|
||||||
debug: "false"
|
debug: false
|
||||||
db_type: postgresdb
|
db_type: postgresdb
|
||||||
postgres:
|
postgres:
|
||||||
database: n8n
|
database: n8n
|
||||||
@ -11,20 +11,22 @@ 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:
|
||||||
prune: 'true'
|
prune: true
|
||||||
max_age: 8760
|
max_age: 8760
|
||||||
diagnostics:
|
diagnostics:
|
||||||
enabled: 'false'
|
enabled: false
|
||||||
node:
|
node:
|
||||||
function:
|
function:
|
||||||
allow:
|
allow:
|
||||||
builtin: '*'
|
builtin: '*'
|
||||||
external: '*'
|
external: '*'
|
||||||
|
|
||||||
|
redis:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
existingSecret: ""
|
existingSecret: ""
|
||||||
|
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
|
Reference in New Issue
Block a user