Production-ready n8n Helm chart with queue mode, multi-main.
4.4K
Deploy n8n workflow automation platform on Kubernetes with advanced features like queue mode, multi-main setup, and production-ready configurations.
# Install from OCI registry
helm install n8n oci://registry-1.docker.io/idirouhab/n8n
# Create secrets
kubectl create secret generic n8n-secrets \
--from-literal=N8N_ENCRYPTION_KEY="$(openssl rand -base64 32)" \
--from-literal=N8N_HOST="n8n.example.com"
# Install with PostgreSQL and Redis
helm install n8n oci://registry-1.docker.io/idirouhab/n8n \
--set database.type=postgresdb \
--set redis.enabled=true \
--set queueMode.enabled=true
# Quick start for testing
helm install n8n oci://registry-1.docker.io/idirouhab/n8n \
--set database.type=sqlite
The chart includes ready-to-use examples for different scenarios:
| Parameter | Description | Default |
|---|---|---|
queueMode.enabled | Enable Redis queue mode | false |
database.type | Database type (sqlite/postgresdb/mysqldb) | sqlite |
ingress.enabled | Enable ingress | false |
autoscaling.enabled | Enable HPA | false |
MIT License - see LICENSE for details.
⚠️ Community Chart: This is a community-maintained chart, not officially supported by n8n team.
Content type
Helm
Digest
sha256:9d39c2f58…
Size
17 kB
Last updated
8 months ago
helm pull oci://registry-1.docker.io/idirouhab/n8n --version latest