From 26723ef07a17e0db6d9dc1eb97d6dbedef64eabb Mon Sep 17 00:00:00 2001 From: Krzysztof Nazarewski <3494992+nazarewk@users.noreply.github.com> Date: Mon, 22 Nov 2021 13:25:34 +0100 Subject: [PATCH] fix YAML syntax errors indent -> nindent (#76) * fix YAML syntax errors indent -> nindent fixes indentation issues introduced in #47 --- charts/sorry-cypress/Chart.yaml | 2 +- charts/sorry-cypress/templates/deployment-api.yml | 6 +++--- charts/sorry-cypress/templates/deployment-dashboard.yml | 6 +++--- charts/sorry-cypress/templates/deployment-director.yml | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/charts/sorry-cypress/Chart.yaml b/charts/sorry-cypress/Chart.yaml index d3e2846..5aa70ea 100644 --- a/charts/sorry-cypress/Chart.yaml +++ b/charts/sorry-cypress/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: sorry-cypress description: A Helm chart for Sorry Cypress type: application -version: 1.1.1 +version: 1.1.2 appVersion: 1.1.1 home: https://sorry-cypress.dev/ sources: diff --git a/charts/sorry-cypress/templates/deployment-api.yml b/charts/sorry-cypress/templates/deployment-api.yml index 3fb9204..62bdf2e 100644 --- a/charts/sorry-cypress/templates/deployment-api.yml +++ b/charts/sorry-cypress/templates/deployment-api.yml @@ -24,14 +24,14 @@ spec: {{- end }} spec: nodeSelector: - {{ toYaml .Values.api.nodeSelector | indent 8 }} + {{ toYaml .Values.api.nodeSelector | nindent 8 }} {{- with .Values.api.tolerations }} tolerations: - {{ toYaml . | indent 8 }} + {{ toYaml . | nindent 8 }} {{- end }} {{- with .Values.api.affinity }} affinity: - {{ toYaml . | indent 8 }} + {{ toYaml . | nindent 8 }} {{- end }} containers: - env: diff --git a/charts/sorry-cypress/templates/deployment-dashboard.yml b/charts/sorry-cypress/templates/deployment-dashboard.yml index e75fedb..c8e732c 100644 --- a/charts/sorry-cypress/templates/deployment-dashboard.yml +++ b/charts/sorry-cypress/templates/deployment-dashboard.yml @@ -24,14 +24,14 @@ spec: {{- end }} spec: nodeSelector: - {{ toYaml .Values.dashboard.nodeSelector | indent 8 }} + {{ toYaml .Values.dashboard.nodeSelector | nindent 8 }} {{- with .Values.dashboard.tolerations }} tolerations: - {{ toYaml . | indent 8 }} + {{ toYaml . | nindent 8 }} {{- end }} {{- with .Values.dashboard.affinity }} affinity: - {{ toYaml . | indent 8 }} + {{ toYaml . | nindent 8 }} {{- end }} containers: - env: diff --git a/charts/sorry-cypress/templates/deployment-director.yml b/charts/sorry-cypress/templates/deployment-director.yml index c0e6214..9f65aa1 100644 --- a/charts/sorry-cypress/templates/deployment-director.yml +++ b/charts/sorry-cypress/templates/deployment-director.yml @@ -21,14 +21,14 @@ spec: {{- end }} spec: nodeSelector: - {{ toYaml .Values.director.nodeSelector | indent 8 }} + {{ toYaml .Values.director.nodeSelector | nindent 8 }} {{- with .Values.director.tolerations }} tolerations: - {{ toYaml . | indent 8 }} + {{ toYaml . | nindent 8 }} {{- end }} {{- with .Values.director.affinity }} affinity: - {{ toYaml . | indent 8 }} + {{ toYaml . | nindent 8 }} {{- end }} containers: - env: