trashposs/chart/templates/serviceaccount.yaml

13 lines
324 B
YAML
Raw Normal View History

2023-05-11 01:07:45 +02:00
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
2024-04-06 23:55:59 +02:00
name: {{ include "trashposs.serviceAccountName" . }}
2023-05-11 01:07:45 +02:00
labels:
2024-04-06 23:55:59 +02:00
{{- include "trashposs.labels" . | nindent 4 }}
2023-05-11 01:07:45 +02:00
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}