mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* Add bookstack Signed-off-by: Bart Verwilst <bart@verwilst.be> * add home to Chart.yaml, remove whitespaces Signed-off-by: Bart Verwilst <bart@verwilst.be> * do not allow privilege escalation Signed-off-by: Bart Verwilst <bart@verwilst.be> * fix api version for deployment Signed-off-by: Bart Verwilst <bart@verwilst.be>
12 lines
328 B
YAML
12 lines
328 B
YAML
{{ if .Values.serviceAccount.create }}
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
labels:
|
|
app: {{ template "bookstack.name" . }}
|
|
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
|
heritage: {{ .Release.Service }}
|
|
release: {{ .Release.Name }}
|
|
name: {{ template "bookstack.serviceAccountName" . }}
|
|
{{- end -}}
|