Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
a140216365
|
|||
623fefe1d3
|
|||
00f087b635
|
|||
5306094c0c
|
|||
00d1b8dcf0
|
|||
0fa2dac744
|
|||
3f46388a06
|
|||
3c787efb0a
|
|||
61f92c0075
|
|||
a667ff2f96
|
|||
862cb62d2f
|
|||
2d2f9b48fd
|
@ -32,6 +32,7 @@ steps:
|
||||
image: cr.grachevko.ru/docker.io/alpine/helm:latest
|
||||
pull: always
|
||||
commands:
|
||||
- helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
- helm dependency build
|
||||
- helm plugin install https://github.com/chartmuseum/helm-push
|
||||
- helm repo add $HELM_REPO_NAME $HELM_REPO_REGISTRY/$HELM_REPO_NAME --username $HELM_REPO_USERNAME --password $HELM_REPO_PASSWORD
|
||||
|
@ -21,4 +21,3 @@
|
||||
.idea/
|
||||
*.tmproj
|
||||
.vscode/
|
||||
*.tgz
|
||||
|
6
Chart.lock
Normal file
6
Chart.lock
Normal file
@ -0,0 +1,6 @@
|
||||
dependencies:
|
||||
- name: redis
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
version: 17.3.11
|
||||
digest: sha256:40f0dad12458b527f362dd152bbeb042a415b0bb48376357901d2062489b0650
|
||||
generated: "2022-11-16T12:29:15.310122534+03:00"
|
@ -3,7 +3,7 @@ name: n8n
|
||||
description: A Helm chart for Kubernetes
|
||||
type: application
|
||||
version: 0.0.1
|
||||
appVersion: v0.202.1
|
||||
appVersion: 0.202.1
|
||||
icon: https://github.com/n8n-io/n8n/raw/master/assets/n8n-logo.png
|
||||
maintainers:
|
||||
- email: me@grachevko.ru
|
||||
@ -12,7 +12,6 @@ sources:
|
||||
- https://git.grachevko.ru/n8n/chart
|
||||
dependencies:
|
||||
- name: redis
|
||||
version: ~16.4.0
|
||||
version: ^17
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
alias: redis
|
||||
condition: redis.enabled
|
||||
|
@ -6,7 +6,6 @@ metadata:
|
||||
labels:
|
||||
{{- include "n8n.labels" . | nindent 4 }}
|
||||
data:
|
||||
NODE_ENV: {{ .Values.config.node_env | quote }}
|
||||
WEBHOOK_URL: {{ .Values.config.webhook_url | quote }}
|
||||
EXECUTIONS_MODE: "queue"
|
||||
EXECUTIONS_PROCESS: {{ .Values.config.executions.process | quote }}
|
||||
@ -17,4 +16,7 @@ data:
|
||||
NODE_FUNCTION_ALLOW_BUILTIN: {{ .Values.config.node.function.allow.builtin | quote }}
|
||||
NODE_FUNCTION_ALLOW_EXTERNAL: {{ .Values.config.node.function.allow.external | quote }}
|
||||
QUEUE_BULL_REDIS_HOST: {{ include "n8n.fullname" . }}-redis
|
||||
{{- if .Values.config.debug }}
|
||||
N8N_LOG_LEVEL: debug
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
@ -32,6 +32,9 @@ spec:
|
||||
{{- toYaml .Values.webhook.securityContext | nindent 12 }}
|
||||
image: "{{ .Values.webhook.image.registry }}/{{ .Values.webhook.image.repository }}:{{ .Values.webhook.image.tag | default .Chart.AppVersion }}"
|
||||
imagePullPolicy: {{ .Values.webhook.image.pullPolicy }}
|
||||
command:
|
||||
- n8n
|
||||
- webhook
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
name: {{ include "n8n.fullname" . }}
|
||||
|
@ -32,6 +32,9 @@ spec:
|
||||
{{- toYaml .Values.worker.securityContext | nindent 12 }}
|
||||
image: "{{ .Values.worker.image.registry }}/{{ .Values.worker.image.repository }}:{{ .Values.worker.image.tag | default .Chart.AppVersion }}"
|
||||
imagePullPolicy: {{ .Values.worker.image.pullPolicy }}
|
||||
command:
|
||||
- n8n
|
||||
- worker
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
name: {{ include "n8n.fullname" . }}
|
||||
|
12
values.yaml
12
values.yaml
@ -1,4 +1,5 @@
|
||||
config:
|
||||
debug: false
|
||||
db_type: postgresdb
|
||||
postgres:
|
||||
database: n8n
|
||||
@ -10,20 +11,25 @@ config:
|
||||
encryption_key: ""
|
||||
timezone: Europe/Moscow
|
||||
webhook_url: ""
|
||||
node_env: production
|
||||
executions:
|
||||
process: main
|
||||
data:
|
||||
prune: 'true'
|
||||
prune: true
|
||||
max_age: 8760
|
||||
diagnostics:
|
||||
enabled: 'false'
|
||||
enabled: false
|
||||
node:
|
||||
function:
|
||||
allow:
|
||||
builtin: '*'
|
||||
external: '*'
|
||||
|
||||
redis:
|
||||
enabled: false
|
||||
architecture: standalone
|
||||
auth:
|
||||
enabled: false
|
||||
|
||||
existingSecret: ""
|
||||
|
||||
nameOverride: ""
|
||||
|
Reference in New Issue
Block a user