Skip to content

Commit a4bd243

Browse files
authored
Merge branch 'main' into operator-sdk-139
2 parents e1d7bb2 + da514b2 commit a4bd243

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
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.4.4
42+
ARG VERSION_LABEL=1.5.0
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
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.4.4
6+
VERSION ?= 1.5.0
77
OPERATOR_SDK_RELEASE_VERSION ?= v1.39.2
88

99
# CHANNELS define the bundle channels used in the bundle.
1010
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "preview,fast,stable")
1111
# To re-generate a bundle for other specific channels without changing the standard setup, you can:
1212
# - use the CHANNELS as arg of the bundle target (e.g make bundle CHANNELS=preview,fast,stable)
1313
# - use environment variables to overwrite this value (e.g export CHANNELS="preview,fast,stable")
14-
CHANNELS ?= v1.4
14+
CHANNELS ?= v1.5
1515
ifneq ($(origin CHANNELS), undefined)
1616
BUNDLE_CHANNELS := --channels=$(CHANNELS)
1717
endif
@@ -21,7 +21,7 @@ endif
2121
# To re-generate a bundle for any other default channel without changing the default setup, you can:
2222
# - use the DEFAULT_CHANNEL as arg of the bundle target (e.g make bundle DEFAULT_CHANNEL=stable)
2323
# - use environment variables to overwrite this value (e.g export DEFAULT_CHANNEL="stable")
24-
DEFAULT_CHANNEL ?= v1.4
24+
DEFAULT_CHANNEL ?= v1.5
2525
ifneq ($(origin DEFAULT_CHANNEL), undefined)
2626
BUNDLE_DEFAULT_CHANNEL := --default-channel=$(DEFAULT_CHANNEL)
2727
endif

bundle.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
55
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
66
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
77
LABEL operators.operatorframework.io.bundle.package.v1=runtime-component
8-
LABEL operators.operatorframework.io.bundle.channels.v1=v1.4
9-
LABEL operators.operatorframework.io.bundle.channel.default.v1=v1.4
8+
LABEL operators.operatorframework.io.bundle.channels.v1=v1.5
9+
LABEL operators.operatorframework.io.bundle.channel.default.v1=v1.5
1010
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.39.2
1111
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1212
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v4

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.4.4'
83+
olm.skipRange: '>=0.8.0 <1.5.0'
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.4.4
93+
name: runtime-component.v1.5.0
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.4.4
1340+
version: 1.5.0

bundle/metadata/annotations.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ annotations:
44
operators.operatorframework.io.bundle.manifests.v1: manifests/
55
operators.operatorframework.io.bundle.metadata.v1: metadata/
66
operators.operatorframework.io.bundle.package.v1: runtime-component
7-
operators.operatorframework.io.bundle.channels.v1: v1.4
8-
operators.operatorframework.io.bundle.channel.default.v1: v1.4
7+
operators.operatorframework.io.bundle.channels.v1: v1.5
8+
operators.operatorframework.io.bundle.channel.default.v1: v1.5
99
operators.operatorframework.io.metrics.builder: operator-sdk-v1.39.2
1010
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
1111
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v4

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.4.4
5+
ARG VERSION_LABEL=1.5.0
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.4.4'
19+
olm.skipRange: '>=0.8.0 <1.5.0'
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.4.4"
44+
const RCOOperandVersion = "1.5.0"
4545

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

0 commit comments

Comments
 (0)