20 lines
461 B
YAML
20 lines
461 B
YAML
{{- if .Values.installCRD }}
|
|
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: eventsources.argoproj.io
|
|
annotations:
|
|
helm.sh/hook: crd-install
|
|
helm.sh/hook-delete-policy: before-hook-creation
|
|
spec:
|
|
group: argoproj.io
|
|
scope: Namespaced
|
|
names:
|
|
kind: EventSource
|
|
plural: eventsources
|
|
singular: eventsource
|
|
listKind: EventSourceList
|
|
shortNames:
|
|
- es
|
|
version: "v1alpha1"
|
|
{{- end }}
|