Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,13 @@ main:
tolerations: []
affinity: {}

# extraContainers is a list of sidecar containers. Specified as a YAML list.
extraContainers: []
# extraContainers:
# - name: my-sidecar
# image: busybox:latest
# command: ["sh", "-c", "while true; do echo hello && sleep 60; done"]

# # # # # # # # # # # # # # # #
#
# Worker related settings
Expand Down Expand Up @@ -540,6 +547,13 @@ worker:
tolerations: []
affinity: {}

# extraContainers is a list of sidecar containers. Specified as a YAML list.
extraContainers: []
# extraContainers:
# - name: my-sidecar
# image: busybox:latest
# command: ["sh", "-c", "while true; do echo hello && sleep 60; done"]

# Webhook related settings
# With .Values.scaling.webhook.enabled=true you disable Webhooks from the main process, but you enable the processing on a different Webhook instance.
# See https://github.com/8gears/n8n-helm-chart/issues/39#issuecomment-1579991754 for the full explanation.
Expand Down Expand Up @@ -725,6 +739,13 @@ webhook:
tolerations: []
affinity: {}

# extraContainers is a list of sidecar containers. Specified as a YAML list.
extraContainers: []
# extraContainers:
# - name: my-sidecar
# image: busybox:latest
# command: ["sh", "-c", "while true; do echo hello && sleep 60; done"]

#
# User defined supplementary K8s manifests
#
Expand Down
8 changes: 4 additions & 4 deletions charts/n8n/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: n8n
version: 1.0.15
appVersion: 1.112.0
version: 1.1.0
appVersion: 1.114.3
type: application
description: "Helm Chart for deploying n8n on Kubernetes, a fair-code workflow automation platform with native AI capabilities for technical teams. Easily automate tasks across different services."
home: https://github.com/8gears/n8n-helm-chart
Expand Down Expand Up @@ -34,5 +34,5 @@ annotations:
artifacthub.io/prerelease: "false"
# supported kinds are added, changed, deprecated, removed, fixed and security.
artifacthub.io/changes: |
- kind: changed
description: "Update n8n app version to 1.112.0"
- kind: added
description: "Add extraContainers support for main, workers, and webhooks"
3 changes: 3 additions & 0 deletions charts/n8n/templates/deployment.webhook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ spec:
{{- if .Values.webhook.extraVolumeMounts }}
{{- toYaml .Values.webhook.extraVolumeMounts | nindent 12 }}
{{- end }}
{{- if .Values.webhook.extraContainers }}
{{ tpl (toYaml .Values.webhook.extraContainers) . | nindent 8 }}
{{- end }}
{{- with .Values.hostAliases }}
hostAliases:
{{- toYaml . | nindent 8 }}
Expand Down
3 changes: 3 additions & 0 deletions charts/n8n/templates/deployment.worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ spec:
{{- if .Values.worker.extraVolumeMounts }}
{{- toYaml .Values.worker.extraVolumeMounts | nindent 12 }}
{{- end }}
{{- if .Values.worker.extraContainers }}
{{ tpl (toYaml .Values.worker.extraContainers) . | nindent 8 }}
{{- end }}
{{- with .Values.hostAliases }}
hostAliases:
{{- toYaml . | nindent 8 }}
Expand Down
3 changes: 3 additions & 0 deletions charts/n8n/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ spec:
{{- if .Values.main.extraVolumeMounts }}
{{- toYaml .Values.main.extraVolumeMounts | nindent 12 }}
{{- end }}
{{- if .Values.main.extraContainers }}
{{ tpl (toYaml .Values.main.extraContainers) . | nindent 8 }}
{{- end }}
{{- with .Values.hostAliases }}
hostAliases:
{{- toYaml . | nindent 8 }}
Expand Down
24 changes: 21 additions & 3 deletions charts/n8n/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ main:
# mountPath: /etc/ssl/certs/postgresql
# readOnly: true


# Number of desired pods. More than one pod is supported in n8n enterprise.
replicaCount: 1

Expand Down Expand Up @@ -233,7 +232,6 @@ main:
# - name: data
# mountPath: /home/node/.n8n


service:
enabled: true
annotations: {}
Expand Down Expand Up @@ -266,6 +264,13 @@ main:
tolerations: []
affinity: {}

# extraContainers is a list of sidecar containers. Specified as a YAML list.
extraContainers: []
# extraContainers:
# - name: my-sidecar
# image: busybox:latest
# command: ["sh", "-c", "while true; do echo hello && sleep 60; done"]

# # # # # # # # # # # # # # # #
#
# Worker related settings
Expand Down Expand Up @@ -451,6 +456,13 @@ worker:
tolerations: []
affinity: {}

# extraContainers is a list of sidecar containers. Specified as a YAML list.
extraContainers: []
# extraContainers:
# - name: my-sidecar
# image: busybox:latest
# command: ["sh", "-c", "while true; do echo hello && sleep 60; done"]

# Webhook related settings
# With .Values.scaling.webhook.enabled=true you disable Webhooks from the main process, but you enable the processing on a different Webhook instance.
# See https://github.com/8gears/n8n-helm-chart/issues/39#issuecomment-1579991754 for the full explanation.
Expand All @@ -467,7 +479,6 @@ webhook:
# WEBHOOK_URL:
# value: "http://webhook.domain.tld"


#
# Webhook Kubernetes specific settings
#
Expand Down Expand Up @@ -636,6 +647,13 @@ webhook:
tolerations: []
affinity: {}

# extraContainers is a list of sidecar containers. Specified as a YAML list.
extraContainers: []
# extraContainers:
# - name: my-sidecar
# image: busybox:latest
# command: ["sh", "-c", "while true; do echo hello && sleep 60; done"]

#
# User defined supplementary K8s manifests
#
Expand Down