Compare commits
9 Commits
285fe88796
...
0.1.8
Author | SHA1 | Date | |
---|---|---|---|
61f92c0075
|
|||
a667ff2f96
|
|||
862cb62d2f
|
|||
2d2f9b48fd
|
|||
42cb58acc5
|
|||
60ed1e8fc5
|
|||
1129489739
|
|||
e673d59fdc
|
|||
921e7948bc
|
@ -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
|
||||
|
6
Chart.lock
Normal file
6
Chart.lock
Normal file
@ -0,0 +1,6 @@
|
||||
dependencies:
|
||||
- name: redis
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
version: 16.4.5
|
||||
digest: sha256:bed8b8c341db9fcbd4a81de0b55a47e306ba4217e8cfa300a4ba97befb13e51c
|
||||
generated: "2022-11-15T22:11:41.384512283+03:00"
|
@ -3,10 +3,16 @@ 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
|
||||
name: Konstantin Grachev
|
||||
sources:
|
||||
- https://git.grachevko.ru/n8n/chart
|
||||
dependencies:
|
||||
- name: redis
|
||||
version: ~16.4.0
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
alias: redis
|
||||
condition: redis.enabled
|
||||
|
@ -1,14 +1,14 @@
|
||||
{{- if not .Values.existingSecret }}
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: {{ include "n8n.fullname" . }}
|
||||
labels:
|
||||
{{- include "n8n.labels" . | nindent 4 }}
|
||||
type: Opaque
|
||||
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 }}
|
||||
GENERIC_TIMEZONE: {{ .Values.config.timezone | quote }}
|
||||
EXECUTIONS_DATA_PRUNE: {{ .Values.config.executions.data.prune | quote }}
|
||||
@ -16,4 +16,8 @@ data:
|
||||
N8N_DIAGNOSTICS_ENABLED: {{ .Values.config.executions.data.max_age | quote }}
|
||||
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,8 +32,7 @@ spec:
|
||||
imagePullPolicy: {{ .Values.n8n.image.pullPolicy }}
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
- name: {{ include "n8n.fullname" . }}
|
||||
envFrom:
|
||||
name: {{ include "n8n.fullname" . }}
|
||||
{{- if .Values.n8n.extraEnvVarsSecret }}
|
||||
- secretRef:
|
||||
name: {{ .Values.n8n.extraEnvVarsSecret }}
|
||||
|
@ -34,8 +34,7 @@ spec:
|
||||
imagePullPolicy: {{ .Values.webhook.image.pullPolicy }}
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
- name: {{ include "n8n.fullname" . }}
|
||||
envFrom:
|
||||
name: {{ include "n8n.fullname" . }}
|
||||
{{- if .Values.webhook.extraEnvVarsSecret }}
|
||||
- secretRef:
|
||||
name: {{ .Values.webhook.extraEnvVarsSecret }}
|
||||
|
@ -34,8 +34,7 @@ spec:
|
||||
imagePullPolicy: {{ .Values.worker.image.pullPolicy }}
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
- name: {{ include "n8n.fullname" . }}
|
||||
envFrom:
|
||||
name: {{ include "n8n.fullname" . }}
|
||||
{{- if .Values.worker.extraEnvVarsSecret }}
|
||||
- secretRef:
|
||||
name: {{ .Values.worker.extraEnvVarsSecret }}
|
||||
|
@ -1,4 +1,5 @@
|
||||
config:
|
||||
debug: "false"
|
||||
db_type: postgresdb
|
||||
postgres:
|
||||
database: n8n
|
||||
|
Reference in New Issue
Block a user