16 lines
503 B
YAML
16 lines
503 B
YAML
|
{{- if .Values.crds.install }}
|
||
|
apiVersion: v1
|
||
|
kind: ServiceAccount
|
||
|
metadata:
|
||
|
name: {{ include "crdInstall" . }}
|
||
|
namespace: {{ .Release.Namespace }}
|
||
|
annotations:
|
||
|
# create hook dependencies in the right order
|
||
|
"helm.sh/hook-weight": "-4"
|
||
|
{{- include "crdInstallAnnotations" . | nindent 4 }}
|
||
|
labels:
|
||
|
app.kubernetes.io/component: {{ include "crdInstall" . | quote }}
|
||
|
{{- include "labels.selector" . | nindent 4 }}
|
||
|
role: {{ include "crdInstallSelector" . | quote }}
|
||
|
{{- end }}
|