From 2485dce4cc2f0a04d7bff5d0e3626b9f54cf1b3b Mon Sep 17 00:00:00 2001 From: Moritz Graf Date: Wed, 18 Feb 2026 20:13:25 +0100 Subject: [PATCH] =?UTF-8?q?Updated=20n8n=20to=20newest=20version=C2=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- k8s/README.md | 2 +- k8s/n8n-fabi/n8n-fabi.secret.yml | 7 +++++-- k8s/n8n/n8n.secret.yml | 4 +++- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/k8s/README.md b/k8s/README.md index 4b522f9..eb1337f 100644 --- a/k8s/README.md +++ b/k8s/README.md @@ -764,7 +764,7 @@ kubectl create secret generic garth-token-secret --from-file=GARTH_TOKEN=./garth kubectl create ns n8n-fabi helm upgrade --cleanup-on-fail --install fabi-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 ``` diff --git a/k8s/n8n-fabi/n8n-fabi.secret.yml b/k8s/n8n-fabi/n8n-fabi.secret.yml index 25ec5c2..df0b1e0 100644 --- a/k8s/n8n-fabi/n8n-fabi.secret.yml +++ b/k8s/n8n-fabi/n8n-fabi.secret.yml @@ -3,13 +3,15 @@ image: repository: n8nio/n8n pullPolicy: Always # Overrides the image tag whose default is the chart appVersion. - tag: "stable" + tag: 2.9.1 main: config: generic: timezone: Europe/Berlin + # Maintain access to env vars in Code nodes (v2.0 blocks this by default) + block_env_access_in_node: false n8n: editor_base_url: https://n8n-fabi.moritzgraf.de webhook_url: https://n8n-fabi.moritzgraf.de @@ -80,7 +82,8 @@ ingress: hosts: - host: n8n-fabi.moritzgraf.de paths: - - / + - path: / + pathType: Prefix tls: - hosts: - "n8n-fabi.moritzgraf.de" diff --git a/k8s/n8n/n8n.secret.yml b/k8s/n8n/n8n.secret.yml index 5d59835..68d669f 100644 --- a/k8s/n8n/n8n.secret.yml +++ b/k8s/n8n/n8n.secret.yml @@ -1,7 +1,7 @@ #small deployment with nodeport for local testing or small deployments image: repository: n8nio/n8n - tag: 1.123.4 + tag: 2.9.1 pullPolicy: Always # Overrides the image tag whose default is the chart appVersion. #tag: "stable" @@ -11,6 +11,8 @@ main: config: generic: timezone: Europe/Berlin + # Maintain access to env vars in Code nodes (v2.0 blocks this by default) + block_env_access_in_node: false n8n: editor_base_url: https://n8n.moritzgraf.de webhook_url: https://n8n.moritzgraf.de