File tree 6 files changed +17
-8
lines changed
6 files changed +17
-8
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.12 .0
18
+ version : 0.13 .0
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.12 .0] ( https://img.shields.io/badge/Version-0.12 .0-informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square )
4
+ ![ Version: 0.13 .0] ( https://img.shields.io/badge/Version-0.13 .0-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
@@ -160,7 +160,7 @@ The command removes all the Kubernetes components associated with the chart and
160
160
| serviceAccount.automountServiceAccountToken | Auto-mount the service account token in the pod | bool | ` true ` |
161
161
| serviceAccount.create | Enable the creation of a ServiceAccount for Backstage pods | bool | ` false ` |
162
162
| serviceAccount.labels | Additional custom labels to the service ServiceAccount. | object | ` {} ` |
163
- | serviceAccount.name | Name of the created ServiceAccount If not set and ` serviceAccount.create ` is true, a name is generated | string | ` "" ` |
163
+ | serviceAccount.name | Name of the ServiceAccount to use If not set and ` serviceAccount.create ` is true, a name is generated | string | ` "" ` |
164
164
165
165
## Configure your Backstage instance
166
166
Original file line number Diff line number Diff line change @@ -5,6 +5,17 @@ Return the proper image name
5
5
{ { include " common.images.image" (dict " imageRoot" .Values.backstage.image " global" .Values.global) } }
6
6
{ {- end -} }
7
7
8
+ { {/*
9
+ Create the name of the service account to use
10
+ */} }
11
+ { {- define " backstage.serviceAccountName" -} }
12
+ { {- if .Values.serviceAccount.create -} }
13
+ { { default (include " common.names.fullname" .) .Values.serviceAccount.name } }
14
+ { {- else -} }
15
+ { { default " default" .Values.serviceAccount.name } }
16
+ { {- end -} }
17
+ { {- end -} }
18
+
8
19
{ {/*
9
20
Create a default fully qualified app name.
10
21
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
Original file line number Diff line number Diff line change 27
27
annotations :
28
28
checksum/app-config : {{ include "common.tplvalues.render" ( dict "value" .Values.backstage.appConfig "context" $) | sha256sum }}
29
29
spec :
30
- {{- if .Values.serviceAccount.create }}
31
- serviceAccountName : {{ .Values.serviceAccount.name }}
32
- {{- end }}
30
+ serviceAccountName : {{ include "backstage.serviceAccountName" . }}
33
31
{{- if .Values.backstage.podSecurityContext }}
34
32
securityContext :
35
33
{{- include "common.tplvalues.render" ( dict "value" .Values.backstage.podSecurityContext "context" $) | nindent 8 }}
Original file line number Diff line number Diff line change 2
2
apiVersion : v1
3
3
kind : ServiceAccount
4
4
metadata :
5
- name : {{ .Values.serviceAccount.name }}
5
+ name : {{ include "backstage.serviceAccountName" . }}
6
6
namespace : {{ .Release.Namespace }}
7
7
labels :
8
8
app.kubernetes.io/component : backstage
Original file line number Diff line number Diff line change @@ -285,7 +285,7 @@ serviceAccount:
285
285
# -- Enable the creation of a ServiceAccount for Backstage pods
286
286
create : false
287
287
288
- # -- Name of the created ServiceAccount
288
+ # -- Name of the ServiceAccount to use
289
289
# If not set and `serviceAccount.create` is true, a name is generated
290
290
name : " "
291
291
You can’t perform that action at this time.
0 commit comments