Skip to content

Commit 4aa4d35

Browse files
authored
Fix indentation for serviceAccount labels and annotations (#5)
1 parent 3948370 commit 4aa4d35

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

charts/backstage/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.5.0
18+
version: 0.5.1
1919

2020
dependencies:
2121
- name: common

charts/backstage/templates/serviceaccount.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ metadata:
66
namespace: {{ .Release.Namespace }}
77
labels:
88
app.kubernetes.io/component: backstage
9-
{{- with .Values.serviceAccount.labels }}
10-
{{ toYaml . | trim | indent 8 }}
11-
{{- end }}
9+
{{- with .Values.serviceAccount.labels }}
10+
{{- toYaml . | trim | nindent 4 }}
11+
{{- end }}
1212
{{- if .Values.serviceAccount.annotations }}
1313
annotations:
1414
{{- with .Values.serviceAccount.annotations }}
15-
{{ toYaml . | trim | indent 8 }}
15+
{{- toYaml . | trim | nindent 4 }}
1616
{{- end }}
1717
{{- end }}
1818
automountServiceAccountToken: {{ .Values.serviceAccount.automountServiceAccountToken }}
19-
{{- end }}
19+
{{- end }}

0 commit comments

Comments
 (0)