2022-08-12 04:20:19 -04:00
|
|
|
{{- if and .Values.preflight.enabled .Values.serviceAccounts.preflight.create }}
|
|
|
|
apiVersion: v1
|
|
|
|
kind: ServiceAccount
|
|
|
|
metadata:
|
|
|
|
name: {{ .Values.serviceAccounts.preflight.name | quote }}
|
|
|
|
namespace: {{ .Release.Namespace }}
|
2023-10-16 13:14:53 -04:00
|
|
|
{{- if or .Values.serviceAccounts.preflight.annotations .Values.preflight.annotations }}
|
2022-08-12 04:20:19 -04:00
|
|
|
annotations:
|
2023-10-16 13:14:53 -04:00
|
|
|
{{- with .Values.preflight.annotations }}
|
|
|
|
{{- toYaml . | nindent 4 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.serviceAccounts.preflight.annotations }}
|
|
|
|
{{- toYaml . | nindent 4 }}
|
|
|
|
{{- end }}
|
2022-08-12 04:20:19 -04:00
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|