helm-charts/speedtest-exporter/templates/serviceaccount.yaml

14 lines
411 B
YAML
Raw Permalink Normal View History

2024-07-05 10:26:59 +02:00
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "speedtest-exporter.serviceAccountName" . }}
labels:
{{- include "speedtest-exporter.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
automountServiceAccountToken: {{ .Values.serviceAccount.automount }}
{{- end }}