Skip to content

Commit 5f702d0

Browse files
authored
Update RCO version to 1.5.2 (#731)
Signed-off-by: Leo Christy Jesuraj <[email protected]>
1 parent 6caeaeb commit 5f702d0

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ FROM registry.access.redhat.com/ubi9/ubi-minimal:latest
3939
ARG USER_ID=65532
4040
ARG GROUP_ID=65532
4141

42-
ARG VERSION_LABEL=1.5.1
42+
ARG VERSION_LABEL=1.5.2
4343
ARG RELEASE_LABEL=XX
4444
ARG VCS_REF=0123456789012345678901234567890123456789
4545
ARG VCS_URL="https://github.com/application-stacks/runtime-component-operator"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= 1.5.1
6+
VERSION ?= 1.5.2
77
OPERATOR_SDK_RELEASE_VERSION ?= v1.39.2
88

99
# CHANNELS define the bundle channels used in the bundle.

bundle/manifests/runtime-component.clusterserviceversion.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ metadata:
8080
features.operators.openshift.io/token-auth-aws: "false"
8181
features.operators.openshift.io/token-auth-azure: "false"
8282
features.operators.openshift.io/token-auth-gcp: "false"
83-
olm.skipRange: '>=0.8.0 <1.5.1'
83+
olm.skipRange: '>=0.8.0 <1.5.2'
8484
operators.operatorframework.io/builder: operator-sdk-v1.39.2
8585
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4
8686
repository: https://github.com/application-stacks/runtime-component-operator
@@ -90,7 +90,7 @@ metadata:
9090
operatorframework.io/arch.ppc64le: supported
9191
operatorframework.io/arch.s390x: supported
9292
operatorframework.io/os.linux: supported
93-
name: runtime-component.v1.5.1
93+
name: runtime-component.v1.5.2
9494
namespace: placeholder
9595
spec:
9696
apiservicedefinitions: {}
@@ -1337,4 +1337,4 @@ spec:
13371337
name: liberty-sample-app
13381338
- image: icr.io/appcafe/runtime-component-operator:daily
13391339
name: runtime-component-operator
1340-
version: 1.5.1
1340+
version: 1.5.2

catalog.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM registry.redhat.io/openshift4/ose-operator-registry-rhel9:v4.18 AS builder
22
FROM registry.redhat.io/ubi9/ubi-minimal
33

44
# Add label for location of Declarative Config root directory & required OpenShift labels
5-
ARG VERSION_LABEL=1.5.1
5+
ARG VERSION_LABEL=1.5.2
66
ARG RELEASE_LABEL=XX
77
ARG VCS_REF=0123456789012345678901234567890123456789
88
ARG VCS_URL="https://github.com/application-stacks/runtime-component-operator"

config/manifests/bases/runtime-component.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ metadata:
1616
features.operators.openshift.io/token-auth-aws: "false"
1717
features.operators.openshift.io/token-auth-azure: "false"
1818
features.operators.openshift.io/token-auth-gcp: "false"
19-
olm.skipRange: '>=0.8.0 <1.5.1'
19+
olm.skipRange: '>=0.8.0 <1.5.2'
2020
repository: https://github.com/application-stacks/runtime-component-operator
2121
support: Community
2222
labels:

utils/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ import (
4141
"sigs.k8s.io/controller-runtime/pkg/reconcile"
4242
)
4343

44-
const RCOOperandVersion = "1.5.1"
44+
const RCOOperandVersion = "1.5.2"
4545

4646
var APIVersionNotFoundError = errors.New("APIVersion is not available")
4747

0 commit comments

Comments
 (0)