44 lines
1018 B
Io
44 lines
1018 B
Io
---
|
|
# Source: argo-workflows/charts/argo-events/templates/crds/eventbus-crd.yml
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: eventbus.argoproj.io
|
|
annotations:
|
|
"helm.sh/resource-policy": keep
|
|
spec:
|
|
group: argoproj.io
|
|
names:
|
|
kind: EventBus
|
|
listKind: EventBusList
|
|
plural: eventbus
|
|
shortNames:
|
|
- eb
|
|
singular: eventbus
|
|
scope: Namespaced
|
|
versions:
|
|
- name: v1alpha1
|
|
schema:
|
|
openAPIV3Schema:
|
|
properties:
|
|
apiVersion:
|
|
type: string
|
|
kind:
|
|
type: string
|
|
metadata:
|
|
type: object
|
|
spec:
|
|
type: object
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
status:
|
|
type: object
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
required:
|
|
- metadata
|
|
- spec
|
|
type: object
|
|
served: true
|
|
storage: true
|
|
subresources:
|
|
status: {}
|