From 5a88afc0eec00117a001a6795e0ff9788ef5df64 Mon Sep 17 00:00:00 2001 From: Leo Christy Jesuraj Date: Tue, 11 Nov 2025 17:05:49 -0500 Subject: [PATCH] Update RCO version to 1.5.2 Signed-off-by: Leo Christy Jesuraj --- Dockerfile | 2 +- Makefile | 2 +- .../manifests/runtime-component.clusterserviceversion.yaml | 6 +++--- catalog.Dockerfile | 2 +- .../bases/runtime-component.clusterserviceversion.yaml | 2 +- utils/utils.go | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index b1d1751e..88d21df1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,7 +39,7 @@ FROM registry.access.redhat.com/ubi9/ubi-minimal:latest ARG USER_ID=65532 ARG GROUP_ID=65532 -ARG VERSION_LABEL=1.5.1 +ARG VERSION_LABEL=1.5.2 ARG RELEASE_LABEL=XX ARG VCS_REF=0123456789012345678901234567890123456789 ARG VCS_URL="https://github.com/application-stacks/runtime-component-operator" diff --git a/Makefile b/Makefile index e72e76f9..ed15c75f 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ # To re-generate a bundle for another specific version without changing the standard setup, you can: # - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2) # - use environment variables to overwrite this value (e.g export VERSION=0.0.2) -VERSION ?= 1.5.1 +VERSION ?= 1.5.2 OPERATOR_SDK_RELEASE_VERSION ?= v1.39.2 # CHANNELS define the bundle channels used in the bundle. diff --git a/bundle/manifests/runtime-component.clusterserviceversion.yaml b/bundle/manifests/runtime-component.clusterserviceversion.yaml index 4fcbdf00..faf9d828 100644 --- a/bundle/manifests/runtime-component.clusterserviceversion.yaml +++ b/bundle/manifests/runtime-component.clusterserviceversion.yaml @@ -80,7 +80,7 @@ metadata: features.operators.openshift.io/token-auth-aws: "false" features.operators.openshift.io/token-auth-azure: "false" features.operators.openshift.io/token-auth-gcp: "false" - olm.skipRange: '>=0.8.0 <1.5.1' + olm.skipRange: '>=0.8.0 <1.5.2' operators.operatorframework.io/builder: operator-sdk-v1.39.2 operators.operatorframework.io/project_layout: go.kubebuilder.io/v4 repository: https://github.com/application-stacks/runtime-component-operator @@ -90,7 +90,7 @@ metadata: operatorframework.io/arch.ppc64le: supported operatorframework.io/arch.s390x: supported operatorframework.io/os.linux: supported - name: runtime-component.v1.5.1 + name: runtime-component.v1.5.2 namespace: placeholder spec: apiservicedefinitions: {} @@ -1337,4 +1337,4 @@ spec: name: liberty-sample-app - image: icr.io/appcafe/runtime-component-operator:daily name: runtime-component-operator - version: 1.5.1 + version: 1.5.2 diff --git a/catalog.Dockerfile b/catalog.Dockerfile index 11fcb212..baea9066 100644 --- a/catalog.Dockerfile +++ b/catalog.Dockerfile @@ -2,7 +2,7 @@ FROM registry.redhat.io/openshift4/ose-operator-registry-rhel9:v4.18 AS builder FROM registry.redhat.io/ubi9/ubi-minimal # Add label for location of Declarative Config root directory & required OpenShift labels -ARG VERSION_LABEL=1.5.1 +ARG VERSION_LABEL=1.5.2 ARG RELEASE_LABEL=XX ARG VCS_REF=0123456789012345678901234567890123456789 ARG VCS_URL="https://github.com/application-stacks/runtime-component-operator" diff --git a/config/manifests/bases/runtime-component.clusterserviceversion.yaml b/config/manifests/bases/runtime-component.clusterserviceversion.yaml index 7790c852..d147ca9a 100644 --- a/config/manifests/bases/runtime-component.clusterserviceversion.yaml +++ b/config/manifests/bases/runtime-component.clusterserviceversion.yaml @@ -16,7 +16,7 @@ metadata: features.operators.openshift.io/token-auth-aws: "false" features.operators.openshift.io/token-auth-azure: "false" features.operators.openshift.io/token-auth-gcp: "false" - olm.skipRange: '>=0.8.0 <1.5.1' + olm.skipRange: '>=0.8.0 <1.5.2' repository: https://github.com/application-stacks/runtime-component-operator support: Community labels: diff --git a/utils/utils.go b/utils/utils.go index 52f5f911..b3af13f4 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -41,7 +41,7 @@ import ( "sigs.k8s.io/controller-runtime/pkg/reconcile" ) -const RCOOperandVersion = "1.5.1" +const RCOOperandVersion = "1.5.2" var APIVersionNotFoundError = errors.New("APIVersion is not available")