Deploying n8n workflow automation with Kubernetes Intro Aim of this article is to Publish n8n workflow automation tool into a Kubernetes environment. n8n is quite flexible and can be used for IOT devices for your hobby projects to act as a SOAR tool at enterprise level. Pre-Reqs Familiarity with Kubernetes (k8s) Package components The deployment is split into following n8n-pvc0.yaml - PersistentVolumeClaim To mount directory for n8n database and configs n8n-pvc1.yaml - PersistentVolumeClaim To mount directory for n8n workflows n8n-deployment.yaml - Actual deployment definitions n8n-svc.yaml - Service To expose n8n for UI access n8n-pvc0.yaml apiVersion: v1 kind: PersistentVolumeClaim metadata: creationTimestamp: null labels: io.kompose.service: n8n-claim0 name: n8n-claim0 spec: accessModes: - ReadWriteOnce resources: requests: storage: 2Gi status: {} n8n-pvc1.yaml apiVersion: v1 kind: PersistentVolumeClaim metadata: creationTimestamp: null
If you love Technology..