Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
9ca2cac8b1
|
|||
744613584d
|
|||
36532aef3b
|
|||
a140216365
|
|||
623fefe1d3
|
|||
00f087b635
|
|||
5306094c0c
|
|||
00d1b8dcf0
|
@ -21,4 +21,3 @@
|
|||||||
.idea/
|
.idea/
|
||||||
*.tmproj
|
*.tmproj
|
||||||
.vscode/
|
.vscode/
|
||||||
*.tgz
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
- name: redis
|
- name: redis
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
version: 16.4.5
|
version: 17.3.11
|
||||||
digest: sha256:bed8b8c341db9fcbd4a81de0b55a47e306ba4217e8cfa300a4ba97befb13e51c
|
digest: sha256:40f0dad12458b527f362dd152bbeb042a415b0bb48376357901d2062489b0650
|
||||||
generated: "2022-11-15T22:11:41.384512283+03:00"
|
generated: "2022-11-16T12:29:15.310122534+03:00"
|
||||||
|
@ -12,7 +12,6 @@ sources:
|
|||||||
- https://git.grachevko.ru/n8n/chart
|
- https://git.grachevko.ru/n8n/chart
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: redis
|
- name: redis
|
||||||
version: ~16.4.0
|
version: ^17
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
alias: redis
|
|
||||||
condition: redis.enabled
|
condition: redis.enabled
|
||||||
|
@ -6,16 +6,18 @@ metadata:
|
|||||||
labels:
|
labels:
|
||||||
{{- include "n8n.labels" . | nindent 4 }}
|
{{- include "n8n.labels" . | nindent 4 }}
|
||||||
data:
|
data:
|
||||||
|
N8N_HOST: {{ .Values.config.host | quote }}
|
||||||
|
N8N_PORT: {{ .Values.config.port | 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 }}
|
||||||
GENERIC_TIMEZONE: {{ .Values.config.timezone | quote }}
|
GENERIC_TIMEZONE: {{ .Values.config.timezone | quote }}
|
||||||
EXECUTIONS_DATA_PRUNE: {{ .Values.config.executions.data.prune | quote }}
|
EXECUTIONS_DATA_PRUNE: {{ .Values.config.executions.data.prune | quote }}
|
||||||
EXECUTIONS_DATA_MAX_AGE: {{ .Values.config.executions.data.max_age | quote }}
|
EXECUTIONS_DATA_MAX_AGE: {{ .Values.config.executions.data.max_age | quote }}
|
||||||
N8N_DIAGNOSTICS_ENABLED: {{ .Values.config.executions.data.max_age | quote }}
|
N8N_DIAGNOSTICS_ENABLED: {{ .Values.config.diagnostics.enabled | quote }}
|
||||||
NODE_FUNCTION_ALLOW_BUILTIN: {{ .Values.config.node.function.allow.builtin | quote }}
|
NODE_FUNCTION_ALLOW_BUILTIN: {{ .Values.config.node.function.allow.builtin | quote }}
|
||||||
NODE_FUNCTION_ALLOW_EXTERNAL: {{ .Values.config.node.function.allow.external | quote }}
|
NODE_FUNCTION_ALLOW_EXTERNAL: {{ .Values.config.node.function.allow.external | quote }}
|
||||||
QUEUE_BULL_REDIS_HOST: {{ include "n8n.fullname" . }}-redis
|
QUEUE_BULL_REDIS_HOST: {{ include "n8n.fullname" . }}-redis-master
|
||||||
{{- if .Values.config.debug }}
|
{{- if .Values.config.debug }}
|
||||||
N8N_LOG_LEVEL: debug
|
N8N_LOG_LEVEL: debug
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
13
values.yaml
13
values.yaml
@ -1,5 +1,7 @@
|
|||||||
config:
|
config:
|
||||||
debug: "false"
|
host: ""
|
||||||
|
port: "5678"
|
||||||
|
debug: false
|
||||||
db_type: postgresdb
|
db_type: postgresdb
|
||||||
postgres:
|
postgres:
|
||||||
database: n8n
|
database: n8n
|
||||||
@ -14,10 +16,10 @@ config:
|
|||||||
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:
|
||||||
@ -25,7 +27,10 @@ config:
|
|||||||
external: '*'
|
external: '*'
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
enabled: 'false'
|
enabled: false
|
||||||
|
architecture: standalone
|
||||||
|
auth:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
existingSecret: ""
|
existingSecret: ""
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user