Skip to content

Commit 8e529c6

Browse files
authored
Merge pull request #225 from joelsmith/release2131
prepare release 2.13.1
2 parents 762f6be + bbce381 commit 8e529c6

25 files changed

+16504
-137
lines changed

.github/workflows/main-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
packages: write
1414
id-token: write # needed for signing the images with GitHub OIDC Token **not production ready**
1515

16-
container: ghcr.io/kedacore/keda-tools:1.21.6
16+
container: ghcr.io/kedacore/keda-tools:1.22.2
1717
steps:
1818
- name: Check out code
1919
uses: actions/checkout@v3

.github/workflows/release-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
packages: write
1313
id-token: write # needed for signing the images with GitHub OIDC Token **not production ready**
1414

15-
container: ghcr.io/kedacore/keda-tools:1.21.6
15+
container: ghcr.io/kedacore/keda-tools:1.22.2
1616
steps:
1717
- name: Check out code
1818
uses: actions/checkout@v3

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM ghcr.io/kedacore/keda-tools:1.21.6 as builder
2+
FROM ghcr.io/kedacore/keda-tools:1.22.2 as builder
33

44
ARG BUILD_VERSION=main
55
ARG GIT_COMMIT=HEAD
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
apiVersion: apiextensions.k8s.io/v1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
annotations:
5+
controller-gen.kubebuilder.io/version: v0.13.0
6+
creationTimestamp: null
7+
labels:
8+
app.kubernetes.io/part-of: keda-olm-operator
9+
app.kubernetes.io/version: main
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: {}
96+
status:
97+
acceptedNames:
98+
kind: ""
99+
plural: ""
100+
conditions: null
101+
storedVersions: null

bundle/manifests/keda.clusterserviceversion.yaml

+8-5
Original file line numberDiff line numberDiff line change
@@ -115,20 +115,23 @@ metadata:
115115
capabilities: Seamless Upgrades
116116
categories: Cloud Provider
117117
certified: "false"
118-
containerImage: ghcr.io/kedacore/keda-olm-operator:2.12.1
119-
createdAt: "2024-02-12T19:54:14Z"
118+
containerImage: ghcr.io/kedacore/keda-olm-operator:2.13.1
119+
createdAt: "2024-06-05T03:33:22Z"
120120
description: Operator that provides KEDA, a Kubernetes-based event driver autoscaler
121121
operatorframework.io/suggested-namespace: keda
122122
operators.operatorframework.io/builder: operator-sdk-v1.31.0
123123
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
124124
repository: https://github.com/kedacore/keda-olm-operator
125125
support: KEDA Community
126-
name: keda.v2.12.1
126+
name: keda.v2.13.1
127127
namespace: placeholder
128128
spec:
129129
apiservicedefinitions: {}
130130
customresourcedefinitions:
131131
owned:
132+
- kind: CloudEventSource
133+
name: cloudeventsources.eventing.keda.sh
134+
version: v1alpha1
132135
- description: Describes cluster wide authentication parameters
133136
displayName: ClusterTriggerAuthentication
134137
kind: ClusterTriggerAuthentication
@@ -673,6 +676,6 @@ spec:
673676
minKubeVersion: 1.23.0
674677
provider:
675678
name: KEDA Community
676-
replaces: keda.v2.12.0
679+
replaces: keda.v2.12.1
677680
selector: {}
678-
version: 2.12.1
681+
version: 2.13.1

0 commit comments

Comments
 (0)