constellation/cli/internal/helm/charts/cilium/templates/cilium-preflight/serviceaccount.yaml

12 lines
398 B
YAML
Raw Normal View History

2022-08-12 08:20:19 +00:00
{{- 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 }}