From e141b401fe056549b37c6af262c98f20625d1dc5 Mon Sep 17 00:00:00 2001 From: Vitaliy Date: Tue, 9 Feb 2021 19:56:44 -0500 Subject: [PATCH] Fixed #570: YAML parse error in argocd-notifications/templates/secret.yaml (#573) Signed-off-by: Vitaliy Fuks Co-authored-by: Alexander Matyushentsev --- .github/pull_request_template.md | 4 ++-- charts/argocd-notifications/Chart.yaml | 2 +- charts/argocd-notifications/templates/secret.yaml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 3f860547..1ed7a9f2 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,9 +1,9 @@ Checklist: -* [ ] I have update the chart version in `Chart.yaml` following Semantic Versioning. +* [ ] I have updated the chart version in `Chart.yaml` following Semantic Versioning. * [ ] Any new values are backwards compatible and/or have sensible default. * [ ] I have followed the testing instructions in the [contributing guide](https://github.com/argoproj/argo-helm/blob/master/CONTRIBUTING.md). * [ ] I have signed the CLA and the build is green. * [ ] I will test my changes again once merged to master and published. -Changes are automatically published when merged to `master`. They are not published on branches. \ No newline at end of file +Changes are automatically published when merged to `master`. They are not published on branches. diff --git a/charts/argocd-notifications/Chart.yaml b/charts/argocd-notifications/Chart.yaml index ab4f6520..a136f4b5 100644 --- a/charts/argocd-notifications/Chart.yaml +++ b/charts/argocd-notifications/Chart.yaml @@ -3,7 +3,7 @@ appVersion: 1.0.1 description: A Helm chart for ArgoCD notifications, an add-on to ArgoCD. name: argocd-notifications type: application -version: 1.0.12 +version: 1.0.13 home: https://github.com/argoproj/argo-helm icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png keywords: diff --git a/charts/argocd-notifications/templates/secret.yaml b/charts/argocd-notifications/templates/secret.yaml index c29e8311..11cf4c78 100644 --- a/charts/argocd-notifications/templates/secret.yaml +++ b/charts/argocd-notifications/templates/secret.yaml @@ -8,6 +8,6 @@ metadata: type: Opaque stringData: {{- with .Values.secret.items }} - {{ toYaml . | indent 2 }} + {{ toYaml . | nindent 2 }} {{- end }} -{{- end }} \ No newline at end of file +{{- end }}