Skip to content

Commit 5fe6c37

Browse files
authored
feat: allow using existing serviceAccount (#42)
1 parent f2855cd commit 5fe6c37

File tree

6 files changed

+17
-8
lines changed

6 files changed

+17
-8
lines changed

charts/backstage/Chart.yaml

+1-1
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.12.0
18+
version: 0.13.0
1919

2020
dependencies:
2121
- name: common

charts/backstage/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# Backstage Helm Chart
33

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)
55

66
A Helm chart for deploying a Backstage application
77

@@ -160,7 +160,7 @@ The command removes all the Kubernetes components associated with the chart and
160160
| serviceAccount.automountServiceAccountToken | Auto-mount the service account token in the pod | bool | `true` |
161161
| serviceAccount.create | Enable the creation of a ServiceAccount for Backstage pods | bool | `false` |
162162
| 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 | `""` |
164164

165165
## Configure your Backstage instance
166166

charts/backstage/templates/_helpers.tpl

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ Return the proper image name
55
{{ include "common.images.image" (dict "imageRoot" .Values.backstage.image "global" .Values.global) }}
66
{{- end -}}
77

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+
819
{{/*
920
Create a default fully qualified app name.
1021
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).

charts/backstage/templates/backstage-deployment.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ spec:
2727
annotations:
2828
checksum/app-config: {{ include "common.tplvalues.render" ( dict "value" .Values.backstage.appConfig "context" $) | sha256sum }}
2929
spec:
30-
{{- if .Values.serviceAccount.create }}
31-
serviceAccountName: {{ .Values.serviceAccount.name }}
32-
{{- end }}
30+
serviceAccountName: {{ include "backstage.serviceAccountName" . }}
3331
{{- if .Values.backstage.podSecurityContext }}
3432
securityContext:
3533
{{- include "common.tplvalues.render" ( dict "value" .Values.backstage.podSecurityContext "context" $) | nindent 8 }}

charts/backstage/templates/serviceaccount.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: v1
33
kind: ServiceAccount
44
metadata:
5-
name: {{ .Values.serviceAccount.name }}
5+
name: {{ include "backstage.serviceAccountName" . }}
66
namespace: {{ .Release.Namespace }}
77
labels:
88
app.kubernetes.io/component: backstage

charts/backstage/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ serviceAccount:
285285
# -- Enable the creation of a ServiceAccount for Backstage pods
286286
create: false
287287

288-
# -- Name of the created ServiceAccount
288+
# -- Name of the ServiceAccount to use
289289
# If not set and `serviceAccount.create` is true, a name is generated
290290
name: ""
291291

0 commit comments

Comments
 (0)