Updated n8n to newest version§

This commit is contained in:
Moritz Graf 2026-02-18 20:13:25 +01:00
parent 065190afb7
commit 2485dce4cc
3 changed files with 9 additions and 4 deletions

View File

@ -764,7 +764,7 @@ kubectl create secret generic garth-token-secret --from-file=GARTH_TOKEN=./garth
kubectl create ns n8n-fabi kubectl create ns n8n-fabi
helm upgrade --cleanup-on-fail --install fabi-n8n \ helm upgrade --cleanup-on-fail --install fabi-n8n \
oci://8gears.container-registry.com/library/n8n \ oci://8gears.container-registry.com/library/n8n \
--namespace n8n-fabi --values n8n-fabi/n8n-fabi.secret.yml --version 1.0.15 --namespace n8n-fabi --values n8n-fabi/n8n-fabi.secret.yml --version 2.0.1
``` ```

View File

@ -3,13 +3,15 @@ image:
repository: n8nio/n8n repository: n8nio/n8n
pullPolicy: Always pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion. # Overrides the image tag whose default is the chart appVersion.
tag: "stable" tag: 2.9.1
main: main:
config: config:
generic: generic:
timezone: Europe/Berlin timezone: Europe/Berlin
# Maintain access to env vars in Code nodes (v2.0 blocks this by default)
block_env_access_in_node: false
n8n: n8n:
editor_base_url: https://n8n-fabi.moritzgraf.de editor_base_url: https://n8n-fabi.moritzgraf.de
webhook_url: https://n8n-fabi.moritzgraf.de webhook_url: https://n8n-fabi.moritzgraf.de
@ -80,7 +82,8 @@ ingress:
hosts: hosts:
- host: n8n-fabi.moritzgraf.de - host: n8n-fabi.moritzgraf.de
paths: paths:
- / - path: /
pathType: Prefix
tls: tls:
- hosts: - hosts:
- "n8n-fabi.moritzgraf.de" - "n8n-fabi.moritzgraf.de"

View File

@ -1,7 +1,7 @@
#small deployment with nodeport for local testing or small deployments #small deployment with nodeport for local testing or small deployments
image: image:
repository: n8nio/n8n repository: n8nio/n8n
tag: 1.123.4 tag: 2.9.1
pullPolicy: Always pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion. # Overrides the image tag whose default is the chart appVersion.
#tag: "stable" #tag: "stable"
@ -11,6 +11,8 @@ main:
config: config:
generic: generic:
timezone: Europe/Berlin timezone: Europe/Berlin
# Maintain access to env vars in Code nodes (v2.0 blocks this by default)
block_env_access_in_node: false
n8n: n8n:
editor_base_url: https://n8n.moritzgraf.de editor_base_url: https://n8n.moritzgraf.de
webhook_url: https://n8n.moritzgraf.de webhook_url: https://n8n.moritzgraf.de