Skip to content

Commit 73d8b6f

Browse files
authored
Merge pull request #1607 from Kuadrant/release-v1.3.0-rc1
[Release] Kuadrant Operator v1.3.0-rc1
2 parents 18bb0e4 + ed516ff commit 73d8b6f

File tree

11 files changed

+35
-37
lines changed

11 files changed

+35
-37
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-10-03T09:42:34Z"
164+
containerImage: quay.io/kuadrant/kuadrant-operator:v1.3.0-rc1
165+
createdAt: "2025-10-03T14:01:27Z"
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-rc1
172172
namespace: placeholder
173173
spec:
174174
apiservicedefinitions: {}
@@ -562,12 +562,12 @@ spec:
562562
- name: EXTENSIONS_DIR
563563
value: /extensions
564564
- name: RELATED_IMAGE_WASMSHIM
565-
value: oci://quay.io/kuadrant/wasm-shim:latest
565+
value: oci://quay.io/kuadrant/wasm-shim:v0.11.0
566566
- name: OPERATOR_NAMESPACE
567567
valueFrom:
568568
fieldRef:
569569
fieldPath: metadata.namespace
570-
image: quay.io/kuadrant/kuadrant-operator:latest
570+
image: quay.io/kuadrant/kuadrant-operator:v1.3.0-rc1
571571
livenessProbe:
572572
httpGet:
573573
path: /healthz
@@ -679,6 +679,6 @@ spec:
679679
name: Red Hat
680680
url: https://github.com/Kuadrant/kuadrant-operator
681681
relatedImages:
682-
- image: oci://quay.io/kuadrant/wasm-shim:latest
682+
- image: oci://quay.io/kuadrant/wasm-shim:v0.11.0
683683
name: wasmshim
684-
version: 0.0.0
684+
version: 1.3.0-rc1

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.22.0"
66
- type: olm.package
77
value:
88
packageName: limitador-operator
9-
version: "0.0.0"
9+
version: "0.16.0"
1010
- type: olm.package
1111
value:
1212
packageName: dns-operator
13-
version: "0.0.0"
13+
version: "0.15.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-rc1"
24+
appVersion: "1.3.0-rc1"
2525
dependencies:
2626
- name: authorino-operator
27-
version: 0.0.0
27+
version: 0.22.0
2828
repository: https://kuadrant.io/helm-charts/
2929
- name: limitador-operator
30-
version: 0.0.0
30+
version: 0.16.0
3131
repository: https://kuadrant.io/helm-charts/
3232
- name: dns-operator
33-
version: 0.0.0
33+
version: 0.15.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
@@ -10074,12 +10074,12 @@ spec:
1007410074
- name: EXTENSIONS_DIR
1007510075
value: /extensions
1007610076
- name: RELATED_IMAGE_WASMSHIM
10077-
value: oci://quay.io/kuadrant/wasm-shim:latest
10077+
value: oci://quay.io/kuadrant/wasm-shim:v0.11.0
1007810078
- name: OPERATOR_NAMESPACE
1007910079
valueFrom:
1008010080
fieldRef:
1008110081
fieldPath: metadata.namespace
10082-
image: quay.io/kuadrant/kuadrant-operator:latest
10082+
image: quay.io/kuadrant/kuadrant-operator:v1.3.0-rc1
1008310083
livenessProbe:
1008410084
httpGet:
1008510085
path: /healthz

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-rc1
88
displayName: Kuadrant Operators
99
grpcPodConfig:
1010
securityContextConfig: restricted

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ kind: Kustomization
1111
images:
1212
- name: controller
1313
newName: quay.io/kuadrant/kuadrant-operator
14-
newTag: latest
14+
newTag: v1.3.0-rc1

config/manager/manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
- name: EXTENSIONS_DIR
3535
value: "/extensions"
3636
- name: RELATED_IMAGE_WASMSHIM
37-
value: "oci://quay.io/kuadrant/wasm-shim:latest"
37+
value: "oci://quay.io/kuadrant/wasm-shim:v0.11.0"
3838
- name: OPERATOR_NAMESPACE
3939
valueFrom:
4040
fieldRef:

config/manifests/bases/kuadrant-operator.clusterserviceversion.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ metadata:
55
alm-examples: '[]'
66
capabilities: Basic Install
77
categories: Integration & Delivery
8-
containerImage: quay.io/kuadrant/kuadrant-operator:latest
8+
containerImage: quay.io/kuadrant/kuadrant-operator:v1.3.0-rc1
99
description: A Kubernetes Operator to manage the lifecycle of the Kuadrant system
1010
operators.operatorframework.io/builder: operator-sdk-v1.9.0
1111
operators.operatorframework.io/project_layout: unknown
1212
repository: https://github.com/Kuadrant/kuadrant-operator
1313
support: kuadrant
14-
name: kuadrant-operator.v0.0.0
14+
name: kuadrant-operator.v1.3.0-rc1
1515
namespace: placeholder
1616
spec:
1717
apiservicedefinitions: {}
@@ -87,4 +87,4 @@ spec:
8787
provider:
8888
name: Red Hat
8989
url: https://github.com/Kuadrant/kuadrant-operator
90-
version: 0.0.0
90+
version: 1.3.0-rc1

0 commit comments

Comments
 (0)