Skip to content

Commit a2ceaf9

Browse files
authored
Update operator version to 1.3.1 (#604)
Signed-off-by: Leo Christy Jesuraj <leojc@ca.ibm.com>
1 parent 8d039b3 commit a2ceaf9

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
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/ubi8/ubi-minimal:latest
3939
ARG USER_ID=65532
4040
ARG GROUP_ID=65532
4141

42-
ARG VERSION_LABEL=1.3.0
42+
ARG VERSION_LABEL=1.3.1
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.3.0
6+
VERSION ?= 1.3.1
77
OPERATOR_SDK_RELEASE_VERSION ?= v1.27.0
88

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

bundle/manifests/runtime-component.clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ metadata:
7171
categories: Application Runtime
7272
certified: "true"
7373
containerImage: icr.io/appcafe/runtime-component-operator:daily
74-
createdAt: "2023-12-01T03:25:43Z"
74+
createdAt: "2024-01-22T15:46:49Z"
7575
description: Deploys any runtime component with dynamic and auto-tuning configuration
76-
olm.skipRange: '>=0.8.0 <1.3.0'
76+
olm.skipRange: '>=0.8.0 <1.3.1'
7777
operators.openshift.io/infrastructure-features: '["disconnected"]'
7878
operators.operatorframework.io/builder: operator-sdk-v1.27.0
7979
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
@@ -84,7 +84,7 @@ metadata:
8484
operatorframework.io/arch.ppc64le: supported
8585
operatorframework.io/arch.s390x: supported
8686
operatorframework.io/os.linux: supported
87-
name: runtime-component.v1.3.0
87+
name: runtime-component.v1.3.1
8888
namespace: placeholder
8989
spec:
9090
apiservicedefinitions: {}
@@ -1293,4 +1293,4 @@ spec:
12931293
name: liberty-sample-app
12941294
- image: icr.io/appcafe/runtime-component-operator:daily
12951295
name: runtime-component-operator
1296-
version: 1.3.0
1296+
version: 1.3.1

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ metadata:
99
containerImage: icr.io/appcafe/runtime-component-operator:daily
1010
createdAt: "2022-02-25T09:00:00Z"
1111
description: Deploys any runtime component with dynamic and auto-tuning configuration
12-
olm.skipRange: '>=0.8.0 <1.3.0'
12+
olm.skipRange: '>=0.8.0 <1.3.1'
1313
operators.openshift.io/infrastructure-features: '["disconnected"]'
1414
repository: https://github.com/application-stacks/runtime-component-operator
1515
support: Community

index.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:v4.12 AS builder
22

33
FROM registry.redhat.io/ubi8/ubi-minimal
44

5-
ARG VERSION_LABEL=1.3.0
5+
ARG VERSION_LABEL=1.3.1
66
ARG RELEASE_LABEL=XX
77
ARG VCS_REF=0123456789012345678901234567890123456789
88
ARG VCS_URL="https://github.com/application-stacks/runtime-component-operator"

utils/utils.go

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

45-
const RCOOperandVersion = "1.3.0"
45+
const RCOOperandVersion = "1.3.1"
4646

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

0 commit comments

Comments
 (0)