n8n 사용하기

cloud2000·2026년 8월 2일

n8n의 공식 및 주요 프로덕션급 Helm 차트는 n8n-hosting GitHub 레포지토리에서 제공되며, OCI 레지스트리 oci://ghcr.io/n8n-io/n8n-helm-chart/n8n을 통해 배포함.

helm chart v1.11.0을 설치해 본다.
참고 - https://github.com/n8n-io/n8n-hosting/tree/v1.11.0/charts/n8n

1. n8n secret 생성

kubectl -n n8n create secret generic n8n-secrets \
--from-literal=N8N_ENCRYPTION_KEY=$(openssl rand -hex 32) \
--from-literal=N8N_HOST=localhost \
--from-literal=N8N_PORT=5678 \
--from-literal=N8N_PROTOCOL=http

2. standalone으로 values.yaml 파일 수정

queueMode:
  enabled: false

database:
  type: sqlite
  useExternal: false

redis:
  enabled: false

persistence:
  enabled: true
  size: 5Gi

secretRefs:
  existingSecret: "n8n-secrets"

3. helm 으로 설치

helm install n8n -n n8n oci://ghcr.io/n8n-io/n8n-helm-chart/n8n --version 1.11.0 -f values.yaml

kubectl -n n8n port-forward svc/n8n-main 5678:5678

reference

https://github.com/upstash/context7
https://github.com/czlonkowski/n8n-mcp
https://github.com/czlonkowski/n8n-skills
https://github.com/zie619/n8n-workflows

profile
유티클라우드

0개의 댓글