Skip to content

Commit 7440939

Browse files
committed
fix: rollback wrong fix #200
1 parent d9b9a70 commit 7440939

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

charts/n8n/Chart.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: n8n
3-
version: 1.0.9
3+
version: 1.0.10
44
appVersion: 1.99.1
55
type: application
66
description: "Helm Chart for deploying n8n on Kubernetes, a fair-code workflow automation platform with native AI capabilities for technical teams. Easily automate tasks across different services."
@@ -35,6 +35,4 @@ annotations:
3535
# supported kinds are added, changed, deprecated, removed, fixed and security.
3636
artifacthub.io/changes: |
3737
- kind: fixed
38-
description: "FIX: deployment.yaml - error converting YAML to JSON: yaml: line 46: could not find expected ':' #177 https://github.com/8gears/n8n-helm-chart/pull/177"
39-
- kind: changed
40-
description: "bump n8n version to 1.99.1"
38+
description: "rollback of a fix that actually broke things: https://github.com/8gears/n8n-helm-chart/issues/200"

charts/n8n/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ spec:
7575
env: {{ not (empty .Values.main.extraEnv) | ternary nil "[]" }}
7676
{{- range $key, $value := .Values.main.extraEnv }}
7777
- name: {{ $key }}
78-
value: "{{ $value }}"
78+
{{- toYaml $value | nindent 14 }}
7979
{{- end }}
8080
lifecycle:
8181
{{- toYaml .Values.main.lifecycle | nindent 12 }}

examples/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,8 @@ for to help you get started with a setup for your particular use case.
1010
* aws - n8n on AWS with EKS, ingress-nginx
1111
* simple-prod - simple production setup with AWS
1212

13+
## Render Examples
1314

15+
```shell
16+
helm template n8n charts/n8n -f examples/values_full.yaml > manifests.yaml
17+
```

0 commit comments

Comments
 (0)