28 lines
669 B
YAML
28 lines
669 B
YAML
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: fabriceventstreams.zalando.org
|
|
# finalizer to prevent accidental deletion of the CRD which would erase
|
|
# all fabriceventstream custom resources. Remove explicitly to delete the CRD.
|
|
finalizers:
|
|
- acid.zalan.do/crd-protection
|
|
spec:
|
|
group: zalando.org
|
|
names:
|
|
kind: FabricEventStream
|
|
listKind: FabricEventStreamList
|
|
plural: fabriceventstreams
|
|
singular: fabriceventstream
|
|
shortNames:
|
|
- fes
|
|
categories:
|
|
- all
|
|
scope: Namespaced
|
|
versions:
|
|
- name: v1
|
|
served: true
|
|
storage: true
|
|
schema:
|
|
openAPIV3Schema:
|
|
type: object
|