summaryrefslogtreecommitdiffstats
path: root/helm/wekan/templates/serviceaccount.yaml
blob: 543e58d465e4f284fa78480d66e31ceec7355025 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{- if .Values.serviceAccounts.create }}
apiVersion: v1
kind: ServiceAccount
metadata:
{{- if .Values.serviceAccounts.annotations }}
  annotations:
{{ .Values.serviceAccounts.annotations | indent 4}}
{{- end }}
  labels:
    app: {{ template "wekan.name" . }}
    chart: {{ template "wekan.chart" . }}
    component: wekan
    heritage: {{ .Release.Service }}
    release: {{ .Release.Name }}
  name: {{ template "wekan.serviceAccountName" . }}
{{- end }}