mirror of
https://gitlab.com/oecis/charts.git
synced 2024-11-19 13:19:03 +00:00
14 lines
391 B
YAML
14 lines
391 B
YAML
|
{{- if .Values.serviceAccount.create -}}
|
||
|
apiVersion: v1
|
||
|
kind: ServiceAccount
|
||
|
metadata:
|
||
|
name: {{ include "snapdrop.serviceAccountName" . }}
|
||
|
labels:
|
||
|
{{- include "snapdrop.labels" . | nindent 4 }}
|
||
|
{{- with .Values.serviceAccount.annotations }}
|
||
|
annotations:
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
automountServiceAccountToken: {{ .Values.serviceAccount.automount }}
|
||
|
{{- end }}
|