Skip to content

Commit b8dcaa1

Browse files
authored
Merge pull request #1549 from Kuadrant/release-v1.3.0-alpha2
[Release] Kuadrant Operator v1.3.0-alpha2
2 parents c43cee2 + 7af0e8f commit b8dcaa1

File tree

14 files changed

+38
-40
lines changed

14 files changed

+38
-40
lines changed

bundle.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
55
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
66
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
77
LABEL operators.operatorframework.io.bundle.package.v1=kuadrant-operator
8-
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
9-
LABEL operators.operatorframework.io.bundle.channel.default.v1=alpha
8+
LABEL operators.operatorframework.io.bundle.channels.v1=stable
9+
LABEL operators.operatorframework.io.bundle.channel.default.v1=stable
1010
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.33.0
1111
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1212
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v4

bundle/manifests/kuadrant-operator.clusterserviceversion.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -161,14 +161,14 @@ metadata:
161161
]
162162
capabilities: Basic Install
163163
categories: Integration & Delivery
164-
containerImage: quay.io/kuadrant/kuadrant-operator:latest
165-
createdAt: "2025-08-28T10:09:55Z"
164+
containerImage: quay.io/kuadrant/kuadrant-operator:v1.3.0-alpha2
165+
createdAt: "2025-09-10T13:09:16Z"
166166
description: A Kubernetes Operator to manage the lifecycle of the Kuadrant system
167167
operators.operatorframework.io/builder: operator-sdk-v1.33.0
168168
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4
169169
repository: https://github.com/Kuadrant/kuadrant-operator
170170
support: kuadrant
171-
name: kuadrant-operator.v0.0.0
171+
name: kuadrant-operator.v1.3.0-alpha2
172172
namespace: placeholder
173173
spec:
174174
apiservicedefinitions: {}
@@ -529,12 +529,12 @@ spec:
529529
- name: EXTENSIONS_DIR
530530
value: /extensions
531531
- name: RELATED_IMAGE_WASMSHIM
532-
value: oci://quay.io/kuadrant/wasm-shim:latest
532+
value: oci://quay.io/kuadrant/wasm-shim:v0.10.0
533533
- name: OPERATOR_NAMESPACE
534534
valueFrom:
535535
fieldRef:
536536
fieldPath: metadata.namespace
537-
image: quay.io/kuadrant/kuadrant-operator:latest
537+
image: quay.io/kuadrant/kuadrant-operator:v1.3.0-alpha2
538538
livenessProbe:
539539
httpGet:
540540
path: /healthz
@@ -646,6 +646,6 @@ spec:
646646
name: Red Hat
647647
url: https://github.com/Kuadrant/kuadrant-operator
648648
relatedImages:
649-
- image: oci://quay.io/kuadrant/wasm-shim:latest
649+
- image: oci://quay.io/kuadrant/wasm-shim:v0.10.0
650650
name: wasmshim
651-
version: 0.0.0
651+
version: 1.3.0-alpha2

bundle/metadata/annotations.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ annotations:
44
operators.operatorframework.io.bundle.manifests.v1: manifests/
55
operators.operatorframework.io.bundle.metadata.v1: metadata/
66
operators.operatorframework.io.bundle.package.v1: kuadrant-operator
7-
operators.operatorframework.io.bundle.channels.v1: alpha
8-
operators.operatorframework.io.bundle.channel.default.v1: alpha
7+
operators.operatorframework.io.bundle.channels.v1: stable
8+
operators.operatorframework.io.bundle.channel.default.v1: stable
99
operators.operatorframework.io.metrics.builder: operator-sdk-v1.33.0
1010
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
1111
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v4

bundle/metadata/dependencies.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ dependencies:
22
- type: olm.package
33
value:
44
packageName: authorino-operator
5-
version: "0.0.0"
5+
version: "0.21.0"
66
- type: olm.package
77
value:
88
packageName: limitador-operator
9-
version: "0.0.0"
9+
version: "0.15.0"
1010
- type: olm.package
1111
value:
1212
packageName: dns-operator
13-
version: "0.0.0"
13+
version: "0.14.0"

charts/kuadrant-operator/Chart.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ sources:
2020
kubeVersion: ">=1.19.0-0"
2121
type: application
2222
# The chart version and dependencies will be properly set when the chart is released matching the operator version
23-
version: "0.0.0"
24-
appVersion: "0.0.0"
23+
version: "1.3.0-alpha2"
24+
appVersion: "1.3.0-alpha2"
2525
dependencies:
2626
- name: authorino-operator
27-
version: 0.0.0
27+
version: 0.21.0
2828
repository: https://kuadrant.io/helm-charts/
2929
- name: limitador-operator
30-
version: 0.0.0
30+
version: 0.15.0
3131
repository: https://kuadrant.io/helm-charts/
3232
- name: dns-operator
33-
version: 0.0.0
33+
version: 0.14.0
3434
repository: https://kuadrant.io/helm-charts/
3535
maintainers:
3636
- email: acatterm@redhat.com

charts/kuadrant-operator/templates/manifests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10013,12 +10013,12 @@ spec:
1001310013
- name: EXTENSIONS_DIR
1001410014
value: /extensions
1001510015
- name: RELATED_IMAGE_WASMSHIM
10016-
value: oci://quay.io/kuadrant/wasm-shim:latest
10016+
value: oci://quay.io/kuadrant/wasm-shim:v0.10.0
1001710017
- name: OPERATOR_NAMESPACE
1001810018
valueFrom:
1001910019
fieldRef:
1002010020
fieldPath: metadata.namespace
10021-
image: quay.io/kuadrant/kuadrant-operator:latest
10021+
image: quay.io/kuadrant/kuadrant-operator:v1.3.0-alpha2
1002210022
livenessProbe:
1002310023
httpGet:
1002410024
path: /healthz
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
resources:
2-
- github.com/Kuadrant/authorino-operator/config/deploy?ref=main
2+
- github.com/Kuadrant/authorino-operator/config/deploy?ref=v0.21.0

config/dependencies/dns/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
resources:
2-
- github.com/kuadrant/dns-operator/config/default?ref=main
2+
- github.com/kuadrant/dns-operator/config/default?ref=v0.14.0
33

44
patches:
55
- path: deployment_patch.yaml
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
resources:
2-
- github.com/Kuadrant/limitador-operator/config/default?ref=main
2+
- github.com/Kuadrant/limitador-operator/config/default?ref=v0.15.0

config/deploy/olm/catalogsource.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: kuadrant-operator-catalog
55
spec:
66
sourceType: grpc
7-
image: quay.io/kuadrant/kuadrant-operator-catalog:latest
7+
image: quay.io/kuadrant/kuadrant-operator-catalog:v1.3.0-alpha2
88
displayName: Kuadrant Operators
99
grpcPodConfig:
1010
securityContextConfig: restricted

0 commit comments

Comments
 (0)