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
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@ main:
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80

runtimeClassName: ""
nodeSelector: {}
tolerations: []
affinity: {}
Expand Down Expand Up @@ -540,6 +541,7 @@ worker:
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80

runtimeClassName: ""
nodeSelector: {}
tolerations: []
affinity: {}
Expand Down Expand Up @@ -725,10 +727,10 @@ webhook:
maxReplicas: 100
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
runtimeClassName: ""
nodeSelector: {}
tolerations: []
affinity: {}

#
# User defined supplementary K8s manifests
#
Expand Down
2 changes: 1 addition & 1 deletion charts/n8n/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: n8n
version: 1.0.7
version: 1.0.8
appVersion: 1.85.1
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."
Expand Down
3 changes: 3 additions & 0 deletions charts/n8n/templates/deployment.webhook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
serviceAccountName: {{ include "n8n.serviceAccountName" . }}
{{- with .Values.webhook.runtimeClassName }}
runtimeClassName: {{ . }}
{{- end }}
securityContext:
{{- toYaml .Values.webhook.podSecurityContext | nindent 8 }}
{{- if .Values.webhook.initContainers }}
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 @@ -46,6 +46,9 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
serviceAccountName: {{ include "n8n.serviceAccountName" . }}
{{- with .Values.worker.runtimeClassName }}
runtimeClassName: {{ . }}
{{- end }}
securityContext:
{{- toYaml .Values.worker.podSecurityContext | nindent 8 }}
{{- if .Values.worker.initContainers }}
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 @@ -45,6 +45,9 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
serviceAccountName: {{ include "n8n.serviceAccountName" . }}
{{- with .Values.main.runtimeClassName }}
runtimeClassName: {{ . }}
{{- end }}
securityContext:
{{- toYaml .Values.main.podSecurityContext | nindent 8 }}
{{- if or .Values.main.initContainers }}
Expand Down
7 changes: 7 additions & 0 deletions charts/n8n/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,9 @@ main:
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80

# specify a runtimeClass for the pod
runtimeClassName: null

nodeSelector: {}
tolerations: []
affinity: {}
Expand Down Expand Up @@ -442,6 +445,9 @@ worker:
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80

# specify a runtimeClass for the worker pod
runtimeClassName: null

nodeSelector: {}
tolerations: []
affinity: {}
Expand Down Expand Up @@ -627,6 +633,7 @@ webhook:
maxReplicas: 100
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
runtimeClassName: null
nodeSelector: {}
tolerations: []
affinity: {}
Expand Down
Loading