19 lines
576 B
YAML
19 lines
576 B
YAML
{{ if and .Values.enterprise.provisioner.enabled .Values.enterprise.enabled }}
|
|
---
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: {{ template "enterprise-logs.provisionerFullname" . }}
|
|
namespace: {{ $.Release.Namespace }}
|
|
labels:
|
|
{{- include "enterprise-logs.provisionerLabels" . | nindent 4 }}
|
|
{{- with .Values.enterprise.provisioner.labels }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
annotations:
|
|
{{- with .Values.enterprise.provisioner.annotations }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
"helm.sh/hook": post-install
|
|
{{- end }}
|