This repository has been archived by the owner on Nov 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy patheventing_v1alpha1_knativeeventingkafka_crd.yaml
89 lines (89 loc) · 3.47 KB
/
eventing_v1alpha1_knativeeventingkafka_crd.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: knativeeventingkafkas.eventing.knative.dev
spec:
group: eventing.knative.dev
names:
kind: KnativeEventingKafka
listKind: KnativeEventingKafkaList
plural: knativeeventingkafkas
singular: knativeeventingkafka
shortNames:
- kek
scope: Namespaced
subresources:
status: {}
validation:
openAPIV3Schema:
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
required:
- bootstrapServers
properties:
bootstrapServers:
description: URI(s) of Apache Kafka broker(s)
type: string
minLength: 1
setAsDefaultChannelProvisioner:
description: Flag that controls whether Kafka channel provisioner is
configured as the cluster default. Defaults to false.
type: boolean
type: object
status:
properties:
conditions:
description: The latest available observations of a resource's current
state. +patchMergeKey=type +patchStrategy=merge
items:
properties:
lastTransitionTime:
description: LastTransitionTime is the last time the condition
transitioned from one status to another. We use VolatileTime
in place of metav1.Time to exclude this from creating equality.Semantic
differences (all other things held constant).
type: string
message:
description: A human readable message indicating details about
the transition.
type: string
reason:
description: The reason for the condition's last transition.
type: string
severity:
description: Severity with which to treat failures of this type
of condition. When this is not specified, it defaults to Error.
type: string
status:
description: Status of the condition, one of True, False, Unknown.
+required
type: string
type:
description: Type of condition. +required
type: string
required:
- type
- status
type: object
type: array
version:
description: The version of the installed release
type: string
type: object
version: v1alpha1
versions:
- name: v1alpha1
served: true
storage: true