Skip to content

Commit 98ee2d0

Browse files
authored
Merge pull request #647 from application-stacks/lcj-133-updates
Update version to 1.3.3 and update sample app
2 parents 6577689 + 26541c0 commit 98ee2d0

11 files changed

+32
-20
lines changed

Dockerfile

+1-1
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.2
42+
ARG VERSION_LABEL=1.3.3
4343
ARG RELEASE_LABEL=XX
4444
ARG VCS_REF=0123456789012345678901234567890123456789
4545
ARG VCS_URL="https://github.com/application-stacks/runtime-component-operator"

Makefile

+1-1
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.2
6+
VERSION ?= 1.3.3
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

+15-9
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
"name": "runtimecomponent-sample"
1212
},
1313
"spec": {
14-
"applicationImage": "icr.io/appcafe/open-liberty/samples/getting-started@sha256:fd04ce5a5870387a379b54da5c47d0338c5f4a1254611d2418f1f959d018ba7e",
14+
"applicationImage": "icr.io/appcafe/open-liberty/samples/getting-started@sha256:422a7a00edc338497c0a91890b09204b8505ef0e377bb9b5944ace0102055e91",
1515
"expose": true,
1616
"manageTLS": true,
1717
"replicas": 1,
@@ -44,7 +44,7 @@ metadata:
4444
"name": "runtimecomponent-sample"
4545
},
4646
"spec": {
47-
"applicationImage": "icr.io/appcafe/open-liberty/samples/getting-started@sha256:fd04ce5a5870387a379b54da5c47d0338c5f4a1254611d2418f1f959d018ba7e",
47+
"applicationImage": "icr.io/appcafe/open-liberty/samples/getting-started@sha256:422a7a00edc338497c0a91890b09204b8505ef0e377bb9b5944ace0102055e91",
4848
"expose": true,
4949
"replicas": 1,
5050
"service": {
@@ -71,10 +71,16 @@ metadata:
7171
categories: Application Runtime
7272
certified: "true"
7373
containerImage: icr.io/appcafe/runtime-component-operator:daily
74-
createdAt: "2024-07-11T19:05:26Z"
74+
createdAt: "2024-08-01T20:26:42Z"
7575
description: Deploys any runtime component with dynamic and auto-tuning configuration
76-
olm.skipRange: '>=0.8.0 <1.3.2'
77-
operators.openshift.io/infrastructure-features: '["disconnected"]'
76+
features.operators.openshift.io/disconnected: "true"
77+
features.operators.openshift.io/fips-compliant: "true"
78+
features.operators.openshift.io/proxy-aware: "false"
79+
features.operators.openshift.io/tls-profiles: "false"
80+
features.operators.openshift.io/token-auth-aws: "false"
81+
features.operators.openshift.io/token-auth-azure: "false"
82+
features.operators.openshift.io/token-auth-gcp: "false"
83+
olm.skipRange: '>=0.8.0 <1.3.3'
7884
operators.operatorframework.io/builder: operator-sdk-v1.27.0
7985
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
8086
repository: https://github.com/application-stacks/runtime-component-operator
@@ -84,7 +90,7 @@ metadata:
8490
operatorframework.io/arch.ppc64le: supported
8591
operatorframework.io/arch.s390x: supported
8692
operatorframework.io/os.linux: supported
87-
name: runtime-component.v1.3.2
93+
name: runtime-component.v1.3.3
8894
namespace: placeholder
8995
spec:
9096
apiservicedefinitions: {}
@@ -1012,7 +1018,7 @@ spec:
10121018
fieldRef:
10131019
fieldPath: metadata.annotations['olm.targetNamespaces']
10141020
- name: RELATED_IMAGE_LIBERTY_SAMPLE_APP
1015-
value: icr.io/appcafe/open-liberty/samples/getting-started@sha256:fd04ce5a5870387a379b54da5c47d0338c5f4a1254611d2418f1f959d018ba7e
1021+
value: icr.io/appcafe/open-liberty/samples/getting-started@sha256:422a7a00edc338497c0a91890b09204b8505ef0e377bb9b5944ace0102055e91
10161022
- name: RELATED_IMAGE_RUNTIME_COMPONENT_OPERATOR
10171023
value: icr.io/appcafe/runtime-component-operator:daily
10181024
image: icr.io/appcafe/runtime-component-operator:daily
@@ -1295,8 +1301,8 @@ spec:
12951301
provider:
12961302
name: Community
12971303
relatedImages:
1298-
- image: icr.io/appcafe/open-liberty/samples/getting-started@sha256:fd04ce5a5870387a379b54da5c47d0338c5f4a1254611d2418f1f959d018ba7e
1304+
- image: icr.io/appcafe/open-liberty/samples/getting-started@sha256:422a7a00edc338497c0a91890b09204b8505ef0e377bb9b5944ace0102055e91
12991305
name: liberty-sample-app
13001306
- image: icr.io/appcafe/runtime-component-operator:daily
13011307
name: runtime-component-operator
1302-
version: 1.3.2
1308+
version: 1.3.3

catalog.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM registry.redhat.io/openshift4/ose-operator-registry:v4.14 AS builder
22
FROM registry.redhat.io/ubi8/ubi-minimal
33

44
# Add label for location of Declarative Config root directory & required OpenShift labels
5-
ARG VERSION_LABEL=1.3.2
5+
ARG VERSION_LABEL=1.3.3
66
ARG RELEASE_LABEL=XX
77
ARG VCS_REF=0123456789012345678901234567890123456789
88
ARG VCS_URL="https://github.com/application-stacks/runtime-component-operator"

config/manager/manager.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ spec:
6767
fieldRef:
6868
fieldPath: metadata.annotations['olm.targetNamespaces']
6969
- name: RELATED_IMAGE_LIBERTY_SAMPLE_APP
70-
value: icr.io/appcafe/open-liberty/samples/getting-started@sha256:fd04ce5a5870387a379b54da5c47d0338c5f4a1254611d2418f1f959d018ba7e
70+
value: icr.io/appcafe/open-liberty/samples/getting-started@sha256:422a7a00edc338497c0a91890b09204b8505ef0e377bb9b5944ace0102055e91
7171
- name: RELATED_IMAGE_RUNTIME_COMPONENT_OPERATOR
7272
value: OPERATOR_IMAGE
7373
securityContext:

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

+8-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,14 @@ 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.2'
13-
operators.openshift.io/infrastructure-features: '["disconnected"]'
12+
features.operators.openshift.io/disconnected: "true"
13+
features.operators.openshift.io/fips-compliant: "true"
14+
features.operators.openshift.io/proxy-aware: "false"
15+
features.operators.openshift.io/tls-profiles: "false"
16+
features.operators.openshift.io/token-auth-aws: "false"
17+
features.operators.openshift.io/token-auth-azure: "false"
18+
features.operators.openshift.io/token-auth-gcp: "false"
19+
olm.skipRange: '>=0.8.0 <1.3.3'
1420
repository: https://github.com/application-stacks/runtime-component-operator
1521
support: Community
1622
labels:

config/samples/rc.app.stacks_v1_runtimecomponent.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: RuntimeComponent
33
metadata:
44
name: runtimecomponent-sample
55
spec:
6-
applicationImage: icr.io/appcafe/open-liberty/samples/getting-started@sha256:fd04ce5a5870387a379b54da5c47d0338c5f4a1254611d2418f1f959d018ba7e
6+
applicationImage: icr.io/appcafe/open-liberty/samples/getting-started@sha256:422a7a00edc338497c0a91890b09204b8505ef0e377bb9b5944ace0102055e91
77
expose: true
88
manageTLS: true
99
replicas: 1

config/samples/rc.app.stacks_v1beta2_runtimecomponent.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: runtimecomponent-sample
55
spec:
66
# Add fields here
7-
applicationImage: icr.io/appcafe/open-liberty/samples/getting-started@sha256:fd04ce5a5870387a379b54da5c47d0338c5f4a1254611d2418f1f959d018ba7e
7+
applicationImage: icr.io/appcafe/open-liberty/samples/getting-started@sha256:422a7a00edc338497c0a91890b09204b8505ef0e377bb9b5944ace0102055e91
88
expose: true
99
replicas: 1
1010
service:

internal/deploy/kubectl/runtime-component-operator.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ spec:
302302
- name: WATCH_NAMESPACE
303303
value: RUNTIME_COMPONENT_WATCH_NAMESPACE
304304
- name: RELATED_IMAGE_LIBERTY_SAMPLE_APP
305-
value: icr.io/appcafe/open-liberty/samples/getting-started@sha256:fd04ce5a5870387a379b54da5c47d0338c5f4a1254611d2418f1f959d018ba7e
305+
value: icr.io/appcafe/open-liberty/samples/getting-started@sha256:422a7a00edc338497c0a91890b09204b8505ef0e377bb9b5944ace0102055e91
306306
- name: RELATED_IMAGE_RUNTIME_COMPONENT_OPERATOR
307307
value: icr.io/appcafe/runtime-component-operator:daily
308308
image: icr.io/appcafe/runtime-component-operator:daily

internal/deploy/kustomize/daily/base/runtime-component-operator.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ spec:
5050
fieldRef:
5151
fieldPath: metadata.namespace
5252
- name: RELATED_IMAGE_LIBERTY_SAMPLE_APP
53-
value: icr.io/appcafe/open-liberty/samples/getting-started@sha256:fd04ce5a5870387a379b54da5c47d0338c5f4a1254611d2418f1f959d018ba7e
53+
value: icr.io/appcafe/open-liberty/samples/getting-started@sha256:422a7a00edc338497c0a91890b09204b8505ef0e377bb9b5944ace0102055e91
5454
- name: RELATED_IMAGE_RUNTIME_COMPONENT_OPERATOR
5555
value: icr.io/appcafe/runtime-component-operator:daily
5656
image: icr.io/appcafe/runtime-component-operator:daily

utils/utils.go

+1-1
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.3.2"
44+
const RCOOperandVersion = "1.3.3"
4545

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

0 commit comments

Comments
 (0)