|
| 1 | +apiVersion: apiextensions.k8s.io/v1 |
| 2 | +kind: CustomResourceDefinition |
| 3 | +metadata: |
| 4 | + annotations: |
| 5 | + controller-gen.kubebuilder.io/version: v0.16.5 |
| 6 | + creationTimestamp: null |
| 7 | + labels: |
| 8 | + app.kubernetes.io/part-of: keda-olm-operator |
| 9 | + app.kubernetes.io/version: main |
| 10 | + name: clustercloudeventsources.eventing.keda.sh |
| 11 | +spec: |
| 12 | + group: eventing.keda.sh |
| 13 | + names: |
| 14 | + kind: ClusterCloudEventSource |
| 15 | + listKind: ClusterCloudEventSourceList |
| 16 | + plural: clustercloudeventsources |
| 17 | + singular: clustercloudeventsource |
| 18 | + scope: Cluster |
| 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 | + properties: |
| 28 | + apiVersion: |
| 29 | + description: |- |
| 30 | + APIVersion defines the versioned schema of this representation of an object. |
| 31 | + Servers should convert recognized schemas to the latest internal value, and |
| 32 | + may reject unrecognized values. |
| 33 | + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
| 34 | + type: string |
| 35 | + kind: |
| 36 | + description: |- |
| 37 | + Kind is a string value representing the REST resource this object represents. |
| 38 | + Servers may infer this from the endpoint the client submits requests to. |
| 39 | + Cannot be updated. |
| 40 | + In CamelCase. |
| 41 | + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
| 42 | + type: string |
| 43 | + metadata: |
| 44 | + type: object |
| 45 | + spec: |
| 46 | + description: CloudEventSourceSpec defines the spec of CloudEventSource |
| 47 | + properties: |
| 48 | + authenticationRef: |
| 49 | + description: |- |
| 50 | + AuthenticationRef points to the TriggerAuthentication or ClusterTriggerAuthentication object that |
| 51 | + is used to authenticate the scaler with the environment |
| 52 | + properties: |
| 53 | + kind: |
| 54 | + description: Kind of the resource being referred to. Defaults |
| 55 | + to TriggerAuthentication. |
| 56 | + type: string |
| 57 | + name: |
| 58 | + type: string |
| 59 | + required: |
| 60 | + - name |
| 61 | + type: object |
| 62 | + clusterName: |
| 63 | + type: string |
| 64 | + destination: |
| 65 | + description: Destination defines the various ways to emit events |
| 66 | + properties: |
| 67 | + azureEventGridTopic: |
| 68 | + properties: |
| 69 | + endpoint: |
| 70 | + type: string |
| 71 | + required: |
| 72 | + - endpoint |
| 73 | + type: object |
| 74 | + http: |
| 75 | + properties: |
| 76 | + uri: |
| 77 | + type: string |
| 78 | + required: |
| 79 | + - uri |
| 80 | + type: object |
| 81 | + type: object |
| 82 | + eventSubscription: |
| 83 | + description: EventSubscription defines filters for events |
| 84 | + properties: |
| 85 | + excludedEventTypes: |
| 86 | + items: |
| 87 | + enum: |
| 88 | + - keda.scaledobject.ready.v1 |
| 89 | + - keda.scaledobject.failed.v1 |
| 90 | + - keda.scaledobject.removed.v1 |
| 91 | + - keda.scaledjob.ready.v1 |
| 92 | + - keda.scaledjob.failed.v1 |
| 93 | + - keda.scaledjob.removed.v1 |
| 94 | + - keda.authentication.triggerauthentication.created.v1 |
| 95 | + - keda.authentication.triggerauthentication.updated.v1 |
| 96 | + - keda.authentication.triggerauthentication.removed.v1 |
| 97 | + - keda.authentication.clustertriggerauthentication.created.v1 |
| 98 | + - keda.authentication.clustertriggerauthentication.updated.v1 |
| 99 | + - keda.authentication.clustertriggerauthentication.removed.v1 |
| 100 | + type: string |
| 101 | + type: array |
| 102 | + includedEventTypes: |
| 103 | + items: |
| 104 | + enum: |
| 105 | + - keda.scaledobject.ready.v1 |
| 106 | + - keda.scaledobject.failed.v1 |
| 107 | + - keda.scaledobject.removed.v1 |
| 108 | + - keda.scaledjob.ready.v1 |
| 109 | + - keda.scaledjob.failed.v1 |
| 110 | + - keda.scaledjob.removed.v1 |
| 111 | + - keda.authentication.triggerauthentication.created.v1 |
| 112 | + - keda.authentication.triggerauthentication.updated.v1 |
| 113 | + - keda.authentication.triggerauthentication.removed.v1 |
| 114 | + - keda.authentication.clustertriggerauthentication.created.v1 |
| 115 | + - keda.authentication.clustertriggerauthentication.updated.v1 |
| 116 | + - keda.authentication.clustertriggerauthentication.removed.v1 |
| 117 | + type: string |
| 118 | + type: array |
| 119 | + type: object |
| 120 | + required: |
| 121 | + - destination |
| 122 | + type: object |
| 123 | + status: |
| 124 | + description: CloudEventSourceStatus defines the observed state of CloudEventSource |
| 125 | + properties: |
| 126 | + conditions: |
| 127 | + description: Conditions an array representation to store multiple |
| 128 | + Conditions |
| 129 | + items: |
| 130 | + description: Condition to store the condition state |
| 131 | + properties: |
| 132 | + message: |
| 133 | + description: A human readable message indicating details about |
| 134 | + the transition. |
| 135 | + type: string |
| 136 | + reason: |
| 137 | + description: The reason for the condition's last transition. |
| 138 | + type: string |
| 139 | + status: |
| 140 | + description: Status of the condition, one of True, False, Unknown. |
| 141 | + type: string |
| 142 | + type: |
| 143 | + description: Type of condition |
| 144 | + type: string |
| 145 | + required: |
| 146 | + - status |
| 147 | + - type |
| 148 | + type: object |
| 149 | + type: array |
| 150 | + type: object |
| 151 | + required: |
| 152 | + - spec |
| 153 | + type: object |
| 154 | + served: true |
| 155 | + storage: true |
| 156 | + subresources: |
| 157 | + status: {} |
| 158 | +status: |
| 159 | + acceptedNames: |
| 160 | + kind: "" |
| 161 | + plural: "" |
| 162 | + conditions: null |
| 163 | + storedVersions: null |
0 commit comments