chart-wyoming_piper: add serviceaccount template

This commit is contained in:
2025-04-20 23:00:36 +02:00
parent c8e5296846
commit 9b8160e74d

View File

@ -0,0 +1,14 @@
{{- 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 }}