Skip to content

Commit

Permalink
indent to 8 for tolerations and nodeSelector (#910)
Browse files Browse the repository at this point in the history
* indent to 8 for tolerations and nodeSelector
  • Loading branch information
MartijnDeMoorNN authored Jan 2, 2025
1 parent d42ed0c commit f5ef69b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions charts/testkube-api/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -338,15 +338,15 @@ spec:
{{- end }}
{{- if .Values.tolerations }}
tolerations:
{{- toYaml .Values.tolerations | nindent 6 }}
{{- toYaml .Values.tolerations | nindent 8 }}
{{- else if .Values.global.tolerations }}
tolerations:
{{- toYaml .Values.global.tolerations | nindent 6 }}
{{- toYaml .Values.global.tolerations | nindent 8 }}
{{- end }}
{{- if .Values.nodeSelector }}
nodeSelector:
{{- toYaml .Values.nodeSelector | nindent 6 }}
{{- toYaml .Values.nodeSelector | nindent 8 }}
{{- else if .Values.global.nodeSelector }}
nodeSelector:
{{- toYaml .Values.global.nodeSelector | nindent 6 }}
{{- toYaml .Values.global.nodeSelector | nindent 8 }}
{{- end }}
4 changes: 2 additions & 2 deletions charts/testkube-logs/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,10 @@ spec:
{{- end }}
{{- if .Values.tolerations }}
tolerations:
{{- toYaml .Values.tolerations | nindent 6 }}
{{- toYaml .Values.tolerations | nindent 8 }}
{{- else if .Values.global.tolerations }}
tolerations:
{{- toYaml .Values.global.tolerations | nindent 6 }}
{{- toYaml .Values.global.tolerations | nindent 8 }}
{{- end }}
{{- if .Values.nodeSelector }}
nodeSelector:
Expand Down

0 comments on commit f5ef69b

Please sign in to comment.