Skip to content

Commit

Permalink
fix YAML syntax errors indent -> nindent (#76)
Browse files Browse the repository at this point in the history
* fix YAML syntax errors indent -> nindent

fixes indentation issues introduced in #47
  • Loading branch information
nazarewk authored Nov 22, 2021
1 parent d3d08dc commit 26723ef
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion charts/sorry-cypress/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions charts/sorry-cypress/templates/deployment-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions charts/sorry-cypress/templates/deployment-dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions charts/sorry-cypress/templates/deployment-director.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 26723ef

Please sign in to comment.