9 Commits
0.0.1 ... 0.1.6

Author SHA1 Message Date
862cb62d2f helm update dependency
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
2022-11-15 22:12:07 +03:00
2d2f9b48fd Remove v prefix from appVersion
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2022-11-15 22:04:03 +03:00
42cb58acc5 Fix configMapRef is a map
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2022-11-15 21:57:31 +03:00
60ed1e8fc5 Remove duplication of envFrom
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2022-11-15 21:55:01 +03:00
1129489739 fix configMap kind
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2022-11-15 21:53:19 +03:00
e673d59fdc Add redis dependency
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2022-11-15 21:50:32 +03:00
921e7948bc add EXECUTIONS_MODE 2022-11-15 21:49:36 +03:00
285fe88796 add maintainers
All checks were successful
continuous-integration/drone/push Build is passing
2022-11-15 21:33:46 +03:00
0d0d8836bf cs fix
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2022-11-15 21:25:37 +03:00
7 changed files with 24 additions and 10 deletions

6
Chart.lock Normal file
View 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"

View File

@ -3,5 +3,16 @@ name: n8n
description: A Helm chart for Kubernetes description: A Helm chart for Kubernetes
type: application type: application
version: 0.0.1 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 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

View File

@ -1,14 +1,14 @@
{{- if not .Values.existingSecret }} {{- if not .Values.existingSecret }}
apiVersion: v1 apiVersion: v1
kind: Secret kind: ConfigMap
metadata: metadata:
name: {{ include "n8n.fullname" . }} name: {{ include "n8n.fullname" . }}
labels: labels:
{{- include "n8n.labels" . | nindent 4 }} {{- include "n8n.labels" . | nindent 4 }}
type: Opaque
data: data:
NODE_ENV: {{ .Values.config.node_env | quote }} 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_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 }}
@ -16,4 +16,5 @@ data:
N8N_DIAGNOSTICS_ENABLED: {{ .Values.config.executions.data.max_age | quote }} N8N_DIAGNOSTICS_ENABLED: {{ .Values.config.executions.data.max_age | 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
{{- end }} {{- end }}

View File

@ -32,8 +32,7 @@ spec:
imagePullPolicy: {{ .Values.n8n.image.pullPolicy }} imagePullPolicy: {{ .Values.n8n.image.pullPolicy }}
envFrom: envFrom:
- configMapRef: - configMapRef:
- name: {{ include "n8n.fullname" . }} name: {{ include "n8n.fullname" . }}
envFrom:
{{- if .Values.n8n.extraEnvVarsSecret }} {{- if .Values.n8n.extraEnvVarsSecret }}
- secretRef: - secretRef:
name: {{ .Values.n8n.extraEnvVarsSecret }} name: {{ .Values.n8n.extraEnvVarsSecret }}

View File

@ -12,7 +12,6 @@ data:
{{- else }} {{- else }}
N8N_ENCRYPTION_KEY: {{ randAlphaNum 10 | b64enc | quote }} N8N_ENCRYPTION_KEY: {{ randAlphaNum 10 | b64enc | quote }}
{{- end }} {{- end }}
{{- if .Values.config.db_type }} {{- if .Values.config.db_type }}
DB_TYPE: {{ .Values.config.db_type | b64enc | quote }} DB_TYPE: {{ .Values.config.db_type | b64enc | quote }}
{{- end }} {{- end }}

View File

@ -34,8 +34,7 @@ spec:
imagePullPolicy: {{ .Values.webhook.image.pullPolicy }} imagePullPolicy: {{ .Values.webhook.image.pullPolicy }}
envFrom: envFrom:
- configMapRef: - configMapRef:
- name: {{ include "n8n.fullname" . }} name: {{ include "n8n.fullname" . }}
envFrom:
{{- if .Values.webhook.extraEnvVarsSecret }} {{- if .Values.webhook.extraEnvVarsSecret }}
- secretRef: - secretRef:
name: {{ .Values.webhook.extraEnvVarsSecret }} name: {{ .Values.webhook.extraEnvVarsSecret }}

View File

@ -34,8 +34,7 @@ spec:
imagePullPolicy: {{ .Values.worker.image.pullPolicy }} imagePullPolicy: {{ .Values.worker.image.pullPolicy }}
envFrom: envFrom:
- configMapRef: - configMapRef:
- name: {{ include "n8n.fullname" . }} name: {{ include "n8n.fullname" . }}
envFrom:
{{- if .Values.worker.extraEnvVarsSecret }} {{- if .Values.worker.extraEnvVarsSecret }}
- secretRef: - secretRef:
name: {{ .Values.worker.extraEnvVarsSecret }} name: {{ .Values.worker.extraEnvVarsSecret }}