24 lines
514 B
YAML
24 lines
514 B
YAML
{{- if .Values.installCRD }}
|
|
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: eventbus.argoproj.io
|
|
annotations:
|
|
helm.sh/hook: crd-install
|
|
helm.sh/hook-delete-policy: before-hook-creation
|
|
spec:
|
|
group: argoproj.io
|
|
names:
|
|
kind: EventBus
|
|
listKind: EventBusList
|
|
plural: eventbus
|
|
shortNames:
|
|
- eb
|
|
singular: eventbus
|
|
scope: Namespaced
|
|
version: v1alpha1
|
|
versions:
|
|
- name: v1alpha1
|
|
served: true
|
|
storage: true
|
|
{{- end }}
|