Files
helm-charts/charts/wyoming-piper/templates/serviceaccount.yaml

15 lines
405 B
YAML

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