Skip to content

Commit

Permalink
Remove dash after if to fix yaml formatting (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
Schreglmann authored Jul 16, 2024
1 parent 2a0517a commit 4662d93
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .changeset/hip-planes-deny.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"comet-site-preview-v1": patch
"comet-site-v1": patch
---

Remove dash after if to fix yaml formatting
2 changes: 1 addition & 1 deletion charts/comet-site-preview-v1/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
{{ $key }}: {{ $val | quote }}
{{- end }}
spec:
{{- if .Values.image.pullSecret -}}
{{- if .Values.image.pullSecret }}
imagePullSecrets:
- name: {{ include "comet-site-preview.fullname" . }}-image-pull-secret
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/comet-site-v1/templates/build-cron-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
{{ $key }}: {{ $val | quote }}
{{- end }}
spec:
{{- if .Values.image.pullSecret -}}
{{- if .Values.image.pullSecret }}
imagePullSecrets:
- name: {{ include "comet-site.fullname" . }}-image-pull-secret
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/comet-site-v1/templates/prelogin-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
{{ $key }}: {{ $val | quote }}
{{- end }}
spec:
{{- if .Values.image.pullSecret -}}
{{- if .Values.image.pullSecret }}
imagePullSecrets:
- name: {{ include "comet-site.fullname" . }}-image-pull-secret
{{- end }}
Expand Down

0 comments on commit 4662d93

Please sign in to comment.