Skip to content
Community

logo

N8n#

Chart Name Version App version
n8n 1.0.15 1.112.0

N8n is a fair-code workflow automation platform that combines a no-code visual builder with the flexibility of code (JavaScript, Python) to connect apps and APIs and build multi-step, AI-driven workflows.

Key features:

  • Self-hosting
  • Strong security
  • Over 400 integrations
  • Support for AI agents using models
  • Large community for templates and extensions

Official doc

Prerequisites#

Deploy k0rdent v1.7.0: QuickStart

Install template to k0rdent#

helm upgrade --install n8n oci://ghcr.io/k0rdent/catalog/charts/kgst --set "chart=n8n:1.0.15" -n kcm-system

Verify service template#

kubectl get servicetemplates -A
# NAMESPACE    NAME                            VALID
# kcm-system   n8n-1-0-15                      true

Deploy service template#

apiVersion: k0rdent.mirantis.com/v1beta1
kind: MultiClusterService
metadata:
  name: n8n
spec:
  clusterSelector:
    matchLabels:
      group: demo
  serviceSpec:
    services:
    - template: n8n-1-0-15
      name: n8n
      namespace: n8n
      values: |-
        n8n:
          main:
            config:
              n8n:
                hide_usage_page: true
            secret:
              n8n:
                encryption_key: "<your-secure-encryption-key>"
            resources:
              limits:
                memory: 2048Mi
              requests:
                memory: 512Mi
            service:
              type: NodePort
              port: 5678