54 lines
1.1 KiB
YAML
54 lines
1.1 KiB
YAML
# N8N Manifest Values
|
|
# This file overrides chart defaults for the dev-tools namespace deployment
|
|
|
|
image:
|
|
repository: n8nio/n8n
|
|
tag: latest
|
|
pullPolicy: IfNotPresent
|
|
|
|
nodeSelector:
|
|
workload: general
|
|
|
|
config:
|
|
N8N_HOST: n8n.dvirlabs.com
|
|
N8N_PROTOCOL: https
|
|
WEBHOOK_URL: https://n8n.dvirlabs.com
|
|
GENERIC_TIMEZONE: Asia/Jerusalem
|
|
N8N_SECURE_COOKIE: "true"
|
|
DB_TYPE: sqlite
|
|
DB_SQLITE_FILE: /root/.n8n/database.db
|
|
|
|
ingress:
|
|
enabled: true
|
|
className: traefik
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt
|
|
traefik.ingress.kubernetes.io/router.entrypoints: web
|
|
hosts:
|
|
- host: n8n.dvirlabs.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls: []
|
|
|
|
persistence:
|
|
enabled: true
|
|
storageClass: nfs-client
|
|
size: 10Gi
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
|
|
env:
|
|
N8N_BLOCK_ENV_ACCESS_IN_NODE: "false"
|
|
|
|
# Sensitive environment variables are injected from the n8n-secrets Secret
|
|
# Expected keys in n8n-secrets:
|
|
# - N8N_ENCRYPTION_KEY: Encryption key for n8n data
|
|
# - TELEGRAM_BOT_TOKEN: Telegram bot token for integrations
|