23 lines
506 B
YAML
23 lines
506 B
YAML
{{- if .Values.installCRD }}
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
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
|
|
versions:
|
|
- name: v1alpha1
|
|
served: true
|
|
storage: true
|
|
{{- end }}
|