Skip to content

Commit 6efa716

Browse files
authored
Merge pull request #241 from joelsmith/kedamain
Prepare release 2.15.0
2 parents f0e1d40 + b4b124f commit 6efa716

31 files changed

+15051
-276
lines changed

.github/workflows/main-build.yml

+4-4
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.12
16+
container: ghcr.io/kedacore/keda-tools:1.22.5
1717
steps:
1818
- name: Check out code
1919
uses: actions/checkout@v4
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Go
2525
uses: actions/setup-go@v5
2626
with:
27-
go-version: '1.21'
27+
go-version: '1.22'
2828

2929
- name: Go modules cache
3030
uses: actions/cache@v4
@@ -73,7 +73,7 @@ jobs:
7373
- name: Setup Go
7474
uses: actions/setup-go@v5
7575
with:
76-
go-version: '1.21'
76+
go-version: '1.22'
7777

7878
- name: Login to GitHub Container Registry
7979
uses: docker/login-action@v3
@@ -138,7 +138,7 @@ jobs:
138138
- name: Setup Go
139139
uses: actions/setup-go@v5
140140
with:
141-
go-version: '1.21'
141+
go-version: '1.22'
142142

143143
- name: Go modules cache
144144
uses: actions/cache@v4

.github/workflows/nightly-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Setup Go
1212
uses: actions/setup-go@v5
1313
with:
14-
go-version: '1.21'
14+
go-version: '1.22'
1515

1616
- name: Check out code
1717
uses: actions/checkout@v4

.github/workflows/pr-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- name: Setup Go
1010
uses: actions/setup-go@v5
1111
with:
12-
go-version: '1.21'
12+
go-version: '1.22'
1313

1414
- name: Check out code
1515
uses: actions/checkout@v4
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/setup-python@v5
3333
- uses: actions/setup-go@v5
3434
with:
35-
go-version: '1.21'
35+
go-version: '1.22'
3636
- name: Get golangci
3737
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.56.2
3838
- uses: pre-commit/action@v3.0.0
@@ -44,7 +44,7 @@ jobs:
4444
contents: read
4545
packages: write
4646

47-
container: ghcr.io/kedacore/keda-tools:1.21.12
47+
container: ghcr.io/kedacore/keda-tools:1.22.5
4848
steps:
4949
- name: Check out code
5050
uses: actions/checkout@v4
@@ -55,7 +55,7 @@ jobs:
5555
- name: Setup Go
5656
uses: actions/setup-go@v5
5757
with:
58-
go-version: '1.21'
58+
go-version: '1.22'
5959

6060
- name: Go modules cache
6161
uses: actions/cache@v4

.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.12
15+
container: ghcr.io/kedacore/keda-tools:1.22.5
1616
steps:
1717
- name: Check out code
1818
uses: actions/checkout@v4

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.12 as builder
2+
FROM ghcr.io/kedacore/keda-tools:1.22.5 as builder
33

44
ARG BUILD_VERSION=main
55
ARG GIT_COMMIT=HEAD

bundle/manifests/keda.clusterserviceversion.yaml

+29-7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,28 @@ metadata:
44
annotations:
55
alm-examples: |-
66
[
7+
{
8+
"apiVersion": "eventing.keda.sh/v1alpha1",
9+
"kind": "CloudEventSource",
10+
"metadata": {
11+
"labels": {
12+
"app.kubernetes.io/created-by": "keda",
13+
"app.kubernetes.io/instance": "cloudeventsource-sample",
14+
"app.kubernetes.io/managed-by": "kustomize",
15+
"app.kubernetes.io/name": "cloudeventsource",
16+
"app.kubernetes.io/part-of": "keda"
17+
},
18+
"name": "cloudeventsource-sample"
19+
},
20+
"spec": {
21+
"clusterName": "cluster-sample",
22+
"destination": {
23+
"http": {
24+
"uri": "http://foo.bar"
25+
}
26+
}
27+
}
28+
},
729
{
830
"apiVersion": "keda.sh/v1alpha1",
931
"kind": "ClusterTriggerAuthentication",
@@ -15,7 +37,7 @@ metadata:
1537
{
1638
"key": "example-role-key",
1739
"name": "example-secret-name",
18-
"parameter": "exmaple-secret-parameter"
40+
"parameter": "example-secret-parameter"
1941
}
2042
]
2143
}
@@ -106,7 +128,7 @@ metadata:
106128
{
107129
"key": "example-role-key",
108130
"name": "example-secret-name",
109-
"parameter": "exmaple-secret-parameter"
131+
"parameter": "example-secret-parameter"
110132
}
111133
]
112134
}
@@ -115,15 +137,15 @@ metadata:
115137
capabilities: Seamless Upgrades
116138
categories: Cloud Provider
117139
certified: "false"
118-
containerImage: ghcr.io/kedacore/keda-olm-operator:2.14.1
119-
createdAt: "2024-08-02T17:41:13Z"
140+
containerImage: ghcr.io/kedacore/keda-olm-operator:2.15.0
141+
createdAt: "2024-08-09T21:40:07Z"
120142
description: Operator that provides KEDA, a Kubernetes-based event driver autoscaler
121143
operatorframework.io/suggested-namespace: keda
122144
operators.operatorframework.io/builder: operator-sdk-v1.31.0
123145
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
124146
repository: https://github.com/kedacore/keda-olm-operator
125147
support: KEDA Community
126-
name: keda.v2.14.1
148+
name: keda.v2.15.0
127149
namespace: placeholder
128150
spec:
129151
apiservicedefinitions: {}
@@ -676,6 +698,6 @@ spec:
676698
minKubeVersion: 1.23.0
677699
provider:
678700
name: KEDA Community
679-
replaces: keda.v2.14.0
701+
replaces: keda.v2.14.1
680702
selector: {}
681-
version: 2.14.1
703+
version: 2.15.0

bundle/manifests/keda.sh_clustertriggerauthentications.yaml

-8
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,10 @@ spec:
164164
provider:
165165
description: PodIdentityProvider contains the list of providers
166166
enum:
167-
- azure
168167
- azure-workload
169168
- gcp
170169
- aws
171170
- aws-eks
172-
- aws-kiam
173171
- none
174172
type: string
175173
roleArn:
@@ -274,12 +272,10 @@ spec:
274272
provider:
275273
description: PodIdentityProvider contains the list of providers
276274
enum:
277-
- azure
278275
- azure-workload
279276
- gcp
280277
- aws
281278
- aws-eks
282-
- aws-kiam
283279
- none
284280
type: string
285281
roleArn:
@@ -398,12 +394,10 @@ spec:
398394
provider:
399395
description: PodIdentityProvider contains the list of providers
400396
enum:
401-
- azure
402397
- azure-workload
403398
- gcp
404399
- aws
405400
- aws-eks
406-
- aws-kiam
407401
- none
408402
type: string
409403
roleArn:
@@ -525,12 +519,10 @@ spec:
525519
provider:
526520
description: PodIdentityProvider contains the list of providers
527521
enum:
528-
- azure
529522
- azure-workload
530523
- gcp
531524
- aws
532525
- aws-eks
533-
- aws-kiam
534526
- none
535527
type: string
536528
roleArn:

0 commit comments

Comments
 (0)