From a2ceaf942124db41c1b1e4151a9ca6d3c1d1876b Mon Sep 17 00:00:00 2001 From: Leo Christy Jesuraj Date: Mon, 22 Jan 2024 11:26:32 -0500 Subject: [PATCH] Update operator version to 1.3.1 (#604) Signed-off-by: Leo Christy Jesuraj --- Dockerfile | 2 +- Makefile | 2 +- .../runtime-component.clusterserviceversion.yaml | 8 ++++---- .../bases/runtime-component.clusterserviceversion.yaml | 2 +- index.Dockerfile | 2 +- utils/utils.go | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 58e4a8c9..0d751edf 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.3.0 +ARG VERSION_LABEL=1.3.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 48cd86a3..d5963c96 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.3.0 +VERSION ?= 1.3.1 OPERATOR_SDK_RELEASE_VERSION ?= v1.27.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 43a709e6..13b7cbdb 100644 --- a/bundle/manifests/runtime-component.clusterserviceversion.yaml +++ b/bundle/manifests/runtime-component.clusterserviceversion.yaml @@ -71,9 +71,9 @@ metadata: categories: Application Runtime certified: "true" containerImage: icr.io/appcafe/runtime-component-operator:daily - createdAt: "2023-12-01T03:25:43Z" + createdAt: "2024-01-22T15:46:49Z" description: Deploys any runtime component with dynamic and auto-tuning configuration - olm.skipRange: '>=0.8.0 <1.3.0' + olm.skipRange: '>=0.8.0 <1.3.1' operators.openshift.io/infrastructure-features: '["disconnected"]' operators.operatorframework.io/builder: operator-sdk-v1.27.0 operators.operatorframework.io/project_layout: go.kubebuilder.io/v3 @@ -84,7 +84,7 @@ metadata: operatorframework.io/arch.ppc64le: supported operatorframework.io/arch.s390x: supported operatorframework.io/os.linux: supported - name: runtime-component.v1.3.0 + name: runtime-component.v1.3.1 namespace: placeholder spec: apiservicedefinitions: {} @@ -1293,4 +1293,4 @@ spec: name: liberty-sample-app - image: icr.io/appcafe/runtime-component-operator:daily name: runtime-component-operator - version: 1.3.0 + version: 1.3.1 diff --git a/config/manifests/bases/runtime-component.clusterserviceversion.yaml b/config/manifests/bases/runtime-component.clusterserviceversion.yaml index da71af42..e6351cca 100644 --- a/config/manifests/bases/runtime-component.clusterserviceversion.yaml +++ b/config/manifests/bases/runtime-component.clusterserviceversion.yaml @@ -9,7 +9,7 @@ metadata: containerImage: icr.io/appcafe/runtime-component-operator:daily createdAt: "2022-02-25T09:00:00Z" description: Deploys any runtime component with dynamic and auto-tuning configuration - olm.skipRange: '>=0.8.0 <1.3.0' + olm.skipRange: '>=0.8.0 <1.3.1' operators.openshift.io/infrastructure-features: '["disconnected"]' repository: https://github.com/application-stacks/runtime-component-operator support: Community diff --git a/index.Dockerfile b/index.Dockerfile index da2e167c..5ee8d0b2 100644 --- a/index.Dockerfile +++ b/index.Dockerfile @@ -2,7 +2,7 @@ FROM registry.redhat.io/openshift4/ose-operator-registry:v4.12 AS builder FROM registry.redhat.io/ubi8/ubi-minimal -ARG VERSION_LABEL=1.3.0 +ARG VERSION_LABEL=1.3.1 ARG RELEASE_LABEL=XX ARG VCS_REF=0123456789012345678901234567890123456789 ARG VCS_URL="https://github.com/application-stacks/runtime-component-operator" diff --git a/utils/utils.go b/utils/utils.go index 25bfd679..ae9596cd 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -42,7 +42,7 @@ import ( "sigs.k8s.io/controller-runtime/pkg/reconcile" ) -const RCOOperandVersion = "1.3.0" +const RCOOperandVersion = "1.3.1" var APIVersionNotFoundError = errors.New("APIVersion is not available")