Files
BellScheduler/charts/templates/serviceaccount.yaml
William Peebles 64fb6351fe
Some checks failed
continuous-integration/drone/push Build is failing
create helm chart
2022-11-19 21:39:05 -05:00

13 lines
342 B
YAML

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