gitea-sonarqube-bot/helm/templates/serviceaccount.yaml
justusbunsi f85bfb4bf5
Fix helm chart service account template
Signed-off-by: Steven Kriegler <sk.bunsenbrenner@gmail.com>
2021-11-12 08:30:37 +01:00

14 lines
350 B
YAML

{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "helm.serviceAccountName" . }}
labels:
{{- include "helm.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
automountServiceAccountToken: false
{{- end }}