Skip to content

Commit

Permalink
fix hc indent (#51)
Browse files Browse the repository at this point in the history
* fix hc indent

* bump version
  • Loading branch information
LeoQuote authored Jun 25, 2023
1 parent 0d9b56d commit 55a9d63
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/healthchecks/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.0.7
version: 1.0.8
apiVersion: v2
name: healthchecks
description: A Helm chart for Kubernetes
Expand Down
8 changes: 4 additions & 4 deletions charts/healthchecks/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ spec:
volumeMounts:
- name: docker-folder
mountPath: /opt/healthchecks/docker
{{- with .Values.extraVolumeMounts }}
{{ toYaml . | nindent 12 }}
{{- if .Values.extraVolumeMounts }}
{{ toYaml .Values.extraVolumeMounts | nindent 10 }}
{{- end}}
ports:
- name: http
Expand All @@ -88,8 +88,8 @@ spec:
- name: docker-folder
configMap:
name: {{ include "healthchecks.fullname" . }}-docker-folder
{{- with .Values.extraVolumes }}
{{ toYaml . | nindent 10 }}
{{- if .Values.extraVolumes }}
{{ toYaml .Values.extraVolumes | indent 8 }}
{{- end}}
{{- with .Values.nodeSelector }}
nodeSelector:
Expand Down

0 comments on commit 55a9d63

Please sign in to comment.