mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-28 17:09:30 -05:00
12 lines
398 B
YAML
12 lines
398 B
YAML
{{- if and .Values.preflight.enabled .Values.serviceAccounts.preflight.create }}
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ .Values.serviceAccounts.preflight.name | quote }}
|
|
namespace: {{ .Release.Namespace }}
|
|
{{- if .Values.serviceAccounts.preflight.annotations }}
|
|
annotations:
|
|
{{ toYaml .Values.serviceAccounts.preflight.annotations | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|