Skip to content

Commit

Permalink
Release n8n chart: v0.1.6, app: v1.68.0
Browse files Browse the repository at this point in the history
  • Loading branch information
th0th committed Nov 21, 2024
1 parent 4171b0d commit ccbd7a4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions charts/n8n/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions charts/n8n/README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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 |
Expand Down
5 changes: 4 additions & 1 deletion charts/n8n/templates/deployment-n8n.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion charts/n8n/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: {}
Expand Down

0 comments on commit ccbd7a4

Please sign in to comment.