File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.8.0
18
+ version : 0.8.1
19
19
20
20
dependencies :
21
21
- name : common
Original file line number Diff line number Diff line change 1
1
2
2
# Backstage Helm Chart
3
3
4
- ![ Version: 0.8.0 ] ( https://img.shields.io/badge/Version-0.8.0 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
4
+ ![ Version: 0.8.1 ] ( https://img.shields.io/badge/Version-0.8.1 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
5
5
6
6
A Helm chart for deploying a Backstage application
7
7
Original file line number Diff line number Diff line change 40
40
name : {{ .configMapRef }}
41
41
{{- end }}
42
42
{{- if .Values.backstage.extraVolumes }}
43
- {{- toYaml . Values.backstage.extraVolumes | nindent 8 }}
43
+ {{- include "common.tplvalues.render" ( dict "value" . Values.backstage.extraVolumes "context" $ ) | nindent 8 }}
44
44
{{- end }}
45
45
{{- end }}
46
46
{{- if .Values.backstage.image.pullSecrets }}
@@ -118,6 +118,6 @@ spec:
118
118
subPath : {{ .filename }}
119
119
{{- end }}
120
120
{{- if .Values.backstage.extraVolumeMounts }}
121
- {{- toYaml . Values.backstage.extraVolumeMounts | nindent 12 }}
121
+ {{- include "common.tplvalues.render" ( dict "value" . Values.backstage.extraVolumeMounts "context" $ ) | nindent 12 }}
122
122
{{- end }}
123
123
{{- end }}
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ metadata:
7
7
labels :
8
8
app.kubernetes.io/component : backstage
9
9
{{- with .Values.serviceAccount.labels }}
10
- {{- toYaml . | trim | nindent 4 }}
10
+ {{- include "common.tplvalues.render" ( dict "value" . "context" $ ) | trim | nindent 4 }}
11
11
{{- end }}
12
12
{{- if .Values.serviceAccount.annotations }}
13
13
annotations :
14
14
{{- with .Values.serviceAccount.annotations }}
15
- {{- toYaml . | trim | nindent 4 }}
15
+ {{- include "common.tplvalues.render" ( dict "value" . "context" $ ) | trim | nindent 4 }}
16
16
{{- end }}
17
17
{{- end }}
18
18
automountServiceAccountToken : {{ .Values.serviceAccount.automountServiceAccountToken }}
You can’t perform that action at this time.
0 commit comments