92 lines
1.7 KiB
YAML
92 lines
1.7 KiB
YAML
# Default values for n8n
|
|
replicaCount: 1
|
|
|
|
image:
|
|
repository: n8n
|
|
tag: latest
|
|
pullPolicy: IfNotPresent
|
|
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 80
|
|
brokerPort: 5679
|
|
|
|
ingress:
|
|
enabled: true
|
|
className: traefik
|
|
annotations: {}
|
|
# cert-manager.io/cluster-issuer: letsencrypt
|
|
# traefik.ingress.kubernetes.io/router.entrypoints: web
|
|
hosts:
|
|
- host: n8n.example.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls: []
|
|
# - secretName: n8n-cert
|
|
# hosts:
|
|
# - n8n.example.com
|
|
|
|
persistence:
|
|
enabled: true
|
|
storageClass: nfs-client
|
|
size: 10Gi
|
|
|
|
# Configuration values for n8n
|
|
config:
|
|
N8N_HOST: n8n.example.com
|
|
N8N_PROTOCOL: https
|
|
WEBHOOK_URL: https://n8n.example.com
|
|
GENERIC_TIMEZONE: Asia/Jerusalem
|
|
N8N_SECURE_COOKIE: "true"
|
|
DB_TYPE: sqlite
|
|
DB_SQLITE_FILE: /root/.n8n/database.db
|
|
|
|
# Extra configuration data to be added to ConfigMap
|
|
configData: {}
|
|
|
|
# Extra environment variables
|
|
env: {}
|
|
# LOG_LEVEL: info
|
|
|
|
# Environment variables from ConfigMaps or Secrets
|
|
envFrom: []
|
|
# - configMapRef:
|
|
# name: n8n-extra-config
|
|
# - secretRef:
|
|
# name: n8n-tokens
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
|
|
nodeSelector: {}
|
|
# workload: general
|
|
|
|
runners:
|
|
enabled: false
|
|
replicaCount: 1
|
|
image:
|
|
repository: n8nio/runners
|
|
tag: latest
|
|
pullPolicy: IfNotPresent
|
|
# Secret containing N8N_RUNNERS_AUTH_TOKEN key
|
|
authSecretName: n8n-secrets
|
|
authSecretKey: N8N_ENCRYPTION_KEY
|
|
# Secret containing TELEGRAM_BOT_TOKEN key for expression env access
|
|
envSecretName: n8n-secrets
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|