Skip to content

Commit b5e44e1

Browse files
committed
fix(chart): fix syntax errors in syncer job template
1 parent 10614c6 commit b5e44e1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

charts/cloudstack-csi/templates/syncer-job.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ spec:
1919
securityContext: {{- toYaml .Values.syncer.podSecurityContext | nindent 8 }}
2020
serviceAccountName: {{ .Values.syncer.serviceAccount.name }}
2121
tolerations:
22-
{ { - with .Values.node.tolerations } }
23-
{ { - toYaml . | nindent 8 } }
24-
{ { - end } }
22+
{{- with .Values.node.tolerations }}
23+
{{- toYaml . | nindent 8 }}
24+
{{- end }}
2525
{{- with .Values.syncer.affinity }}
2626
affinity: {{- toYaml . | nindent 8 }}
2727
{{- end }}
@@ -68,4 +68,4 @@ spec:
6868
path: /etc/cloudstack-csi-driver
6969
{{- end }}
7070
restartPolicy: {{ .Values.syncer.restartPolicy }}
71-
{{- end }}
71+
{{- end }}

0 commit comments

Comments
 (0)