bazaar/helm/templates/serviceaccount.yaml

13 lines
318 B
YAML
Raw Normal View History

2022-08-11 19:28:08 +00:00
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "bazaar.serviceAccountName" . }}
labels:
{{- include "bazaar.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}