mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04: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 }}
|