From ccbd7a4f6bfff2a04f140e418c3cba27f1338007 Mon Sep 17 00:00:00 2001 From: Gokhan Sari Date: Thu, 21 Nov 2024 19:26:38 +0300 Subject: [PATCH] Release n8n chart: v0.1.6, app: v1.68.0 --- charts/n8n/Chart.yaml | 4 ++-- charts/n8n/README.md | 4 ++-- charts/n8n/templates/deployment-n8n.yaml | 5 ++++- charts/n8n/values.yaml | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/charts/n8n/Chart.yaml b/charts/n8n/Chart.yaml index 03a8251..f5b097e 100644 --- a/charts/n8n/Chart.yaml +++ b/charts/n8n/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 -appVersion: "1.67.1" +appVersion: "1.68.0" name: n8n description: An extendable workflow automation tool. type: application -version: 0.1.5 +version: 0.1.6 diff --git a/charts/n8n/README.md b/charts/n8n/README.md index 98e5181..7df69b3 100644 --- a/charts/n8n/README.md +++ b/charts/n8n/README.md @@ -1,6 +1,6 @@ # n8n -![Version: 0.1.4](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.67.1](https://img.shields.io/badge/AppVersion-1.67.1-informational?style=flat-square) +![Version: 0.1.4](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.68.0](https://img.shields.io/badge/AppVersion-1.68.0-informational?style=flat-square) An extendable workflow automation tool. @@ -30,7 +30,7 @@ $ helm uninstall --namespace n8n n8n | env | object | `{}` | environment variables to be passed to n8n (see [docs](https://docs.n8n.io/hosting/configuration/environment-variables/)) | | image.pullPolicy | string | `"IfNotPresent"` | n8n image pull policy | | image.repository | string | `"docker.n8n.io/n8nio/n8n"` | n8n image repository | -| image.tag | string | `"1.67.1"` | n8n image tag | +| image.tag | string | `"1.68.0"` | n8n image tag | | ingress.annotations | object | `{}` | the ingress annotations | | ingress.enabled | bool | `false` | enable the ingress | | ingress.hosts | list | `[]` | the ingress host | diff --git a/charts/n8n/templates/deployment-n8n.yaml b/charts/n8n/templates/deployment-n8n.yaml index 652f2cf..d58ec0f 100644 --- a/charts/n8n/templates/deployment-n8n.yaml +++ b/charts/n8n/templates/deployment-n8n.yaml @@ -32,6 +32,9 @@ spec: value: {{ $value | quote }} {{ end }} envFrom: + - configMapRef: + name: {{ include "n8n.fullname" . }}-n8n + optional: false - configMapRef: name: {{ include "n8n.fullname" . }}-postgres optional: false @@ -40,7 +43,7 @@ spec: name: {{ include "n8n.fullname" . }}-postgres optional: false prefix: DB_POSTGRESDB_ - image: {{ .Values.image.repository }}:{{ .Values.image.tag }} + image: {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }} imagePullPolicy: {{ .Values.image.pullPolicy }} name: n8n volumeMounts: diff --git a/charts/n8n/values.yaml b/charts/n8n/values.yaml index 8307464..36a619a 100644 --- a/charts/n8n/values.yaml +++ b/charts/n8n/values.yaml @@ -8,7 +8,7 @@ image: # -- n8n image repository repository: docker.n8n.io/n8nio/n8n # -- n8n image tag - tag: 1.67.1 + tag: "" ingress: # -- the ingress annotations annotations: {}