You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: improve deployment modes and persistence validation
- Add validation for Deployment with PVC and multiple replicas
- Add validation for webhook component with PVC
- Update documentation with detailed deployment modes
- Document persistence limitations for all components
- Add examples for different deployment scenarios
Copy file name to clipboardExpand all lines: charts/n8n/Chart.yaml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
apiVersion: v2
2
2
name: n8n
3
-
version: 1.0.4
3
+
version: 1.1.0
4
4
appVersion: 1.81.4
5
5
type: application
6
6
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."
{{- fail "\nERROR: Invalid configuration\nWhen using Deployment (statefulSet.enabled=false) with persistent storage, replicaCount must be 1.\nTo use multiple replicas either:\n 1. Enable StatefulSet (requires Enterprise license)\n 2. Use emptyDir for persistence (data will be lost on pod restart)" -}}
{{- fail "\nERROR: Invalid webhook configuration\nWhen using persistent storage for webhook component, replicaCount must be 1.\nTo use multiple replicas either:\n 1. Disable persistence\n 2. Use emptyDir for persistence (data will be lost on pod restart)" -}}
0 commit comments