Skip to content

Commit 541d183

Browse files
authored
operator keda (2.13.1)
1 parent b09f1f2 commit 541d183

8 files changed

+14367
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
---
2+
apiVersion: apiextensions.k8s.io/v1
3+
kind: CustomResourceDefinition
4+
metadata:
5+
annotations:
6+
controller-gen.kubebuilder.io/version: v0.13.0
7+
labels:
8+
app.kubernetes.io/part-of: keda-operator
9+
app.kubernetes.io/version: 2.13.1
10+
name: cloudeventsources.eventing.keda.sh
11+
spec:
12+
group: eventing.keda.sh
13+
names:
14+
kind: CloudEventSource
15+
listKind: CloudEventSourceList
16+
plural: cloudeventsources
17+
singular: cloudeventsource
18+
scope: Namespaced
19+
versions:
20+
- additionalPrinterColumns:
21+
- jsonPath: .status.conditions[?(@.type=="Active")].status
22+
name: Active
23+
type: string
24+
name: v1alpha1
25+
schema:
26+
openAPIV3Schema:
27+
description: CloudEventSource defines how a KEDA event will be sent to event
28+
sink
29+
properties:
30+
apiVersion:
31+
description: 'APIVersion defines the versioned schema of this representation
32+
of an object. Servers should convert recognized schemas to the latest
33+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
34+
type: string
35+
kind:
36+
description: 'Kind is a string value representing the REST resource this
37+
object represents. Servers may infer this from the endpoint the client
38+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
39+
type: string
40+
metadata:
41+
type: object
42+
spec:
43+
description: CloudEventSourceSpec defines the spec of CloudEventSource
44+
properties:
45+
clusterName:
46+
type: string
47+
destination:
48+
description: Destination defines the various ways to emit events
49+
properties:
50+
http:
51+
properties:
52+
uri:
53+
type: string
54+
required:
55+
- uri
56+
type: object
57+
type: object
58+
required:
59+
- destination
60+
type: object
61+
status:
62+
description: CloudEventSourceStatus defines the observed state of CloudEventSource
63+
properties:
64+
conditions:
65+
description: Conditions an array representation to store multiple
66+
Conditions
67+
items:
68+
description: Condition to store the condition state
69+
properties:
70+
message:
71+
description: A human readable message indicating details about
72+
the transition.
73+
type: string
74+
reason:
75+
description: The reason for the condition's last transition.
76+
type: string
77+
status:
78+
description: Status of the condition, one of True, False, Unknown.
79+
type: string
80+
type:
81+
description: Type of condition
82+
type: string
83+
required:
84+
- status
85+
- type
86+
type: object
87+
type: array
88+
type: object
89+
required:
90+
- spec
91+
type: object
92+
served: true
93+
storage: true
94+
subresources:
95+
status: {}

0 commit comments

Comments
 (0)