Skip to content

Commit

Permalink
Whitespace issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bpblanken committed Oct 26, 2023
1 parent 3f0c4b6 commit 30fd76f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/hail-search/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.11
version: 0.1.12

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/hail-search/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
imagePullSecrets:
{{- toYaml . | nindent 6 }}
{{- end }}
{{- if .Values.serviceAccount.create -}}
{{- if .Values.serviceAccount.create }}
serviceAccountName: {{ include "hail-search.fullname" . }}
{{- end }}
containers:
Expand Down
2 changes: 1 addition & 1 deletion charts/seqr/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.60
version: 0.0.61
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ spec:
imagePullSecrets:
{{- toYaml . | nindent 6 }}
{{- end }}
{{- if .Values.serviceAccount.create }}
serviceAccountName: {{ include "seqr.fullname" . }}
{{- end }}
containers:
- name: {{ include "seqr.fullname" $ }}-check-new-samples-job-pod-{{ $path | replace "/" "-" | replace "_" "-" | lower}}
image: {{ $.Values.image.repository }}:{{ $.Values.image.tag | default $.Chart.AppVersion }}
Expand Down
3 changes: 3 additions & 0 deletions charts/seqr/templates/cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ spec:
imagePullSecrets:
{{- toYaml . | nindent 10 }}
{{- end }}
{{- if .Values.serviceAccount.create }}
serviceAccountName: {{ include "seqr.fullname" . }}
{{- end }}
containers:
- name: {{ include "seqr.fullname" $ }}-{{- $c.name }}-cronjob-pod
imagePullPolicy: {{ $.Values.image.pullPolicy }}
Expand Down
2 changes: 1 addition & 1 deletion charts/seqr/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
imagePullSecrets:
{{- toYaml . | nindent 6 }}
{{- end }}
{{- if .Values.serviceAccount.create -}}
{{- if .Values.serviceAccount.create }}
serviceAccountName: {{ include "seqr.fullname" . }}
{{- end }}
containers:
Expand Down

0 comments on commit 30fd76f

Please sign in to comment.