From eee1f82135fc54e26f5b655c9fb0d7589b2914c9 Mon Sep 17 00:00:00 2001 From: Leo Christy Jesuraj Date: Fri, 22 Nov 2024 12:33:33 -0500 Subject: [PATCH] Update RCO version to 1.4.1 (#668) Signed-off-by: Leo Christy Jesuraj --- Dockerfile | 2 +- Makefile | 2 +- .../runtime-component.clusterserviceversion.yaml | 8 ++++---- catalog.Dockerfile | 2 +- .../bases/runtime-component.clusterserviceversion.yaml | 2 +- utils/utils.go | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3fe1ea24..360d4f2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,7 +39,7 @@ FROM registry.access.redhat.com/ubi8/ubi-minimal:latest ARG USER_ID=65532 ARG GROUP_ID=65532 -ARG VERSION_LABEL=1.4.0 +ARG VERSION_LABEL=1.4.1 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 be51ad7d..4b8c339c 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.4.0 +VERSION ?= 1.4.1 OPERATOR_SDK_RELEASE_VERSION ?= v1.35.0 # 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 8fe32c3b..f4d332ab 100644 --- a/bundle/manifests/runtime-component.clusterserviceversion.yaml +++ b/bundle/manifests/runtime-component.clusterserviceversion.yaml @@ -71,7 +71,7 @@ metadata: categories: Application Runtime certified: "true" containerImage: icr.io/appcafe/runtime-component-operator:daily - createdAt: "2024-11-15T15:49:28Z" + createdAt: "2024-11-22T17:03:31Z" description: Deploys any runtime component with dynamic and auto-tuning configuration features.operators.openshift.io/disconnected: "true" features.operators.openshift.io/fips-compliant: "true" @@ -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.4.0' + olm.skipRange: '>=0.8.0 <1.4.1' operators.operatorframework.io/builder: operator-sdk-v1.35.0 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.4.0 + name: runtime-component.v1.4.1 namespace: placeholder spec: apiservicedefinitions: {} @@ -1322,4 +1322,4 @@ spec: name: liberty-sample-app - image: icr.io/appcafe/runtime-component-operator:daily name: runtime-component-operator - version: 1.4.0 + version: 1.4.1 diff --git a/catalog.Dockerfile b/catalog.Dockerfile index 2341d5e2..45601f96 100644 --- a/catalog.Dockerfile +++ b/catalog.Dockerfile @@ -2,7 +2,7 @@ FROM registry.redhat.io/openshift4/ose-operator-registry:v4.14 AS builder FROM registry.redhat.io/ubi8/ubi-minimal # Add label for location of Declarative Config root directory & required OpenShift labels -ARG VERSION_LABEL=1.4.0 +ARG VERSION_LABEL=1.4.1 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 327f607c..a395e1d5 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.4.0' + olm.skipRange: '>=0.8.0 <1.4.1' repository: https://github.com/application-stacks/runtime-component-operator support: Community labels: diff --git a/utils/utils.go b/utils/utils.go index c701b136..860559c1 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -40,7 +40,7 @@ import ( "sigs.k8s.io/controller-runtime/pkg/reconcile" ) -const RCOOperandVersion = "1.4.0" +const RCOOperandVersion = "1.4.1" var APIVersionNotFoundError = errors.New("APIVersion is not available")