4 Commits
0.1.0 ... 0.1.2

Author SHA1 Message Date
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
2 changed files with 14 additions and 2 deletions

View File

@ -5,3 +5,14 @@ type: application
version: 0.0.1 version: 0.0.1
appVersion: v0.202.1 appVersion: v0.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 }}