Skip to content

Commit 6b32ad8

Browse files
authored
chore(version): bump versions for 4.0.3-dev (#1152)
1 parent ce9ef2c commit 6b32ad8

File tree

14 files changed

+70
-72
lines changed

14 files changed

+70
-72
lines changed

Makefile

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ OS = $(shell go env GOOS)
88
ARCH = $(shell go env GOARCH)
99

1010
# Current Operator version
11-
export OPERATOR_VERSION ?= 4.0.2
11+
export OPERATOR_VERSION ?= 4.0.3-dev
1212
IMAGE_VERSION ?= $(OPERATOR_VERSION)
1313
BUNDLE_VERSION ?= $(IMAGE_VERSION)
1414
DEFAULT_NAMESPACE ?= quay.io/cryostat
@@ -62,7 +62,7 @@ export APP_NAME ?= Cryostat
6262
# Images used by the operator
6363
CORE_NAMESPACE ?= $(DEFAULT_NAMESPACE)
6464
CORE_NAME ?= cryostat
65-
CORE_VERSION ?= 4.0.2
65+
CORE_VERSION ?= 4.0.3-snapshot
6666
export CORE_IMG ?= $(CORE_NAMESPACE)/$(CORE_NAME):$(CORE_VERSION)
6767
OAUTH2_PROXY_NAMESPACE ?= quay.io/oauth2-proxy
6868
OAUTH2_PROXY_NAME ?= oauth2-proxy
@@ -71,39 +71,39 @@ export OAUTH2_PROXY_IMG ?= $(OAUTH2_PROXY_NAMESPACE)/$(OAUTH2_PROXY_NAME):$(OAUT
7171
OPENSHIFT_OAUTH_PROXY_NAMESPACE ?= quay.io/cryostat
7272
OPENSHIFT_OAUTH_PROXY_NAME ?= openshift-oauth-proxy
7373
# there is no 'latest' tag for this container
74-
OPENSHIFT_OAUTH_PROXY_VERSION ?= 4.0.2
74+
OPENSHIFT_OAUTH_PROXY_VERSION ?= 4.0
7575
export OPENSHIFT_OAUTH_PROXY_IMG ?= $(OPENSHIFT_OAUTH_PROXY_NAMESPACE)/$(OPENSHIFT_OAUTH_PROXY_NAME):$(OPENSHIFT_OAUTH_PROXY_VERSION)
7676
DATASOURCE_NAMESPACE ?= $(DEFAULT_NAMESPACE)
7777
DATASOURCE_NAME ?= jfr-datasource
78-
DATASOURCE_VERSION ?= 4.0.2
78+
DATASOURCE_VERSION ?= 4.0.3-snapshot
7979
export DATASOURCE_IMG ?= $(DATASOURCE_NAMESPACE)/$(DATASOURCE_NAME):$(DATASOURCE_VERSION)
8080
GRAFANA_NAMESPACE ?= $(DEFAULT_NAMESPACE)
8181
GRAFANA_NAME ?= cryostat-grafana-dashboard
82-
GRAFANA_VERSION ?= 4.0.2
82+
GRAFANA_VERSION ?= 4.0
8383
export GRAFANA_IMG ?= $(GRAFANA_NAMESPACE)/$(GRAFANA_NAME):$(GRAFANA_VERSION)
8484
REPORTS_NAMESPACE ?= $(DEFAULT_NAMESPACE)
8585
REPORTS_NAME ?= cryostat-reports
86-
REPORTS_VERSION ?= 4.0.2
86+
REPORTS_VERSION ?= 4.0.3-snapshot
8787
export REPORTS_IMG ?= $(REPORTS_NAMESPACE)/$(REPORTS_NAME):$(REPORTS_VERSION)
8888
DATABASE_NAMESPACE ?= $(DEFAULT_NAMESPACE)
8989
DATABASE_NAME ?= cryostat-db
90-
DATABASE_VERSION ?= 4.0.2
90+
DATABASE_VERSION ?= 4.0
9191
export DATABASE_IMG ?= $(DATABASE_NAMESPACE)/$(DATABASE_NAME):$(DATABASE_VERSION)
9292
STORAGE_NAMESPACE ?= $(DEFAULT_NAMESPACE)
9393
STORAGE_NAME ?= cryostat-storage
94-
STORAGE_VERSION ?= 4.0.2
94+
STORAGE_VERSION ?= 4.0
9595
export STORAGE_IMG ?= $(STORAGE_NAMESPACE)/$(STORAGE_NAME):$(STORAGE_VERSION)
9696
AGENT_PROXY_NAMESPACE ?= registry.access.redhat.com/ubi9
9797
AGENT_PROXY_NAME ?= nginx-124
9898
AGENT_PROXY_VERSION ?= latest
9999
export AGENT_PROXY_IMG ?= $(AGENT_PROXY_NAMESPACE)/$(AGENT_PROXY_NAME):$(AGENT_PROXY_VERSION)
100100
AGENT_INIT_NAMESPACE ?= $(DEFAULT_NAMESPACE)
101101
AGENT_INIT_NAME ?= cryostat-agent-init
102-
AGENT_INIT_VERSION ?= 0.5.2
102+
AGENT_INIT_VERSION ?= 0.5.3-snapshot
103103
export AGENT_INIT_IMG ?= $(AGENT_INIT_NAMESPACE)/$(AGENT_INIT_NAME):$(AGENT_INIT_VERSION)
104104
CONSOLE_PLUGIN_NAMESPACE ?= $(DEFAULT_NAMESPACE)
105105
CONSOLE_PLUGIN_NAME ?= cryostat-openshift-console-plugin
106-
CONSOLE_PLUGIN_VERSION ?= 4.0.2
106+
CONSOLE_PLUGIN_VERSION ?= 4.0.3-dev
107107
CONSOLE_PLUGIN_IMG ?= $(CONSOLE_PLUGIN_NAMESPACE)/$(CONSOLE_PLUGIN_NAME):$(CONSOLE_PLUGIN_VERSION)
108108

109109
CERT_MANAGER_VERSION ?= 1.12.14
@@ -121,7 +121,7 @@ ENVTEST_K8S_VERSION ?= 1.26
121121
# See: https://github.com/operator-framework/operator-sdk/pull/4762
122122
#
123123
# Suffix is the timestamp of the image build, compute with: date -u '+%Y%m%d%H%M%S'
124-
CUSTOM_SCORECARD_VERSION ?= 4.0.2-$(shell date -u '+%Y%m%d%H%M%S')
124+
CUSTOM_SCORECARD_VERSION ?= 4.0.3-$(shell date -u '+%Y%m%d%H%M%S')
125125
export CUSTOM_SCORECARD_IMG ?= $(IMAGE_TAG_BASE)-scorecard:$(CUSTOM_SCORECARD_VERSION)
126126

127127
DEPLOY_NAMESPACE ?= cryostat-operator-system

bundle.Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ 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=cryostat-operator
8-
LABEL operators.operatorframework.io.bundle.channels.v1=stable
9-
LABEL operators.operatorframework.io.bundle.channel.default.v1=stable
8+
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
109
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.31.0
1110
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1211
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3

bundle/manifests/cryostat-operator.clusterserviceversion.yaml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ metadata:
2323
]
2424
capabilities: Seamless Upgrades
2525
categories: Monitoring, Developer Tools
26-
containerImage: quay.io/cryostat/cryostat-operator:4.0.2
27-
createdAt: "2025-09-04T14:01:00Z"
26+
containerImage: quay.io/cryostat/cryostat-operator:4.0.3-dev
27+
createdAt: "2025-09-04T20:56:34Z"
2828
description: JVM monitoring and profiling tool
2929
operatorframework.io/initialization-resource: |-
3030
{
@@ -48,7 +48,7 @@ metadata:
4848
operatorframework.io/arch.amd64: supported
4949
operatorframework.io/arch.arm64: supported
5050
operatorframework.io/os.linux: supported
51-
name: cryostat-operator.v4.0.2
51+
name: cryostat-operator.v4.0.3-dev
5252
namespace: placeholder
5353
spec:
5454
apiservicedefinitions: {}
@@ -1136,29 +1136,29 @@ spec:
11361136
- name: RELATED_IMAGE_OAUTH2_PROXY
11371137
value: quay.io/oauth2-proxy/oauth2-proxy:latest
11381138
- name: RELATED_IMAGE_OPENSHIFT_OAUTH_PROXY
1139-
value: quay.io/cryostat/openshift-oauth-proxy:4.0.2
1139+
value: quay.io/cryostat/openshift-oauth-proxy:4.0
11401140
- name: RELATED_IMAGE_CORE
1141-
value: quay.io/cryostat/cryostat:4.0.2
1141+
value: quay.io/cryostat/cryostat:4.0.3-snapshot
11421142
- name: RELATED_IMAGE_DATASOURCE
1143-
value: quay.io/cryostat/jfr-datasource:4.0.2
1143+
value: quay.io/cryostat/jfr-datasource:4.0.3-snapshot
11441144
- name: RELATED_IMAGE_GRAFANA
1145-
value: quay.io/cryostat/cryostat-grafana-dashboard:4.0.2
1145+
value: quay.io/cryostat/cryostat-grafana-dashboard:4.0
11461146
- name: RELATED_IMAGE_REPORTS
1147-
value: quay.io/cryostat/cryostat-reports:4.0.2
1147+
value: quay.io/cryostat/cryostat-reports:4.0.3-snapshot
11481148
- name: RELATED_IMAGE_STORAGE
1149-
value: quay.io/cryostat/cryostat-storage:4.0.2
1149+
value: quay.io/cryostat/cryostat-storage:4.0
11501150
- name: RELATED_IMAGE_DATABASE
1151-
value: quay.io/cryostat/cryostat-db:4.0.2
1151+
value: quay.io/cryostat/cryostat-db:4.0
11521152
- name: RELATED_IMAGE_AGENT_PROXY
11531153
value: registry.access.redhat.com/ubi9/nginx-124:latest
11541154
- name: RELATED_IMAGE_AGENT_INIT
1155-
value: quay.io/cryostat/cryostat-agent-init:0.5.2
1155+
value: quay.io/cryostat/cryostat-agent-init:0.5.3-snapshot
11561156
- name: WATCH_NAMESPACE
11571157
valueFrom:
11581158
fieldRef:
11591159
fieldPath: metadata.annotations['olm.targetNamespaces']
1160-
image: quay.io/cryostat/cryostat-operator:4.0.2
1161-
imagePullPolicy: IfNotPresent
1160+
image: quay.io/cryostat/cryostat-operator:4.0.3-dev
1161+
imagePullPolicy: Always
11621162
livenessProbe:
11631163
httpGet:
11641164
path: /healthz
@@ -1304,25 +1304,25 @@ spec:
13041304
relatedImages:
13051305
- image: quay.io/oauth2-proxy/oauth2-proxy:latest
13061306
name: oauth2-proxy
1307-
- image: quay.io/cryostat/openshift-oauth-proxy:4.0.2
1307+
- image: quay.io/cryostat/openshift-oauth-proxy:4.0
13081308
name: openshift-oauth-proxy
1309-
- image: quay.io/cryostat/cryostat:4.0.2
1309+
- image: quay.io/cryostat/cryostat:4.0.3-snapshot
13101310
name: core
1311-
- image: quay.io/cryostat/jfr-datasource:4.0.2
1311+
- image: quay.io/cryostat/jfr-datasource:4.0.3-snapshot
13121312
name: datasource
1313-
- image: quay.io/cryostat/cryostat-grafana-dashboard:4.0.2
1313+
- image: quay.io/cryostat/cryostat-grafana-dashboard:4.0
13141314
name: grafana
1315-
- image: quay.io/cryostat/cryostat-reports:4.0.2
1315+
- image: quay.io/cryostat/cryostat-reports:4.0.3-snapshot
13161316
name: reports
1317-
- image: quay.io/cryostat/cryostat-storage:4.0.2
1317+
- image: quay.io/cryostat/cryostat-storage:4.0
13181318
name: storage
1319-
- image: quay.io/cryostat/cryostat-db:4.0.2
1319+
- image: quay.io/cryostat/cryostat-db:4.0
13201320
name: database
13211321
- image: registry.access.redhat.com/ubi9/nginx-124:latest
13221322
name: agent-proxy
1323-
- image: quay.io/cryostat/cryostat-agent-init:0.5.2
1323+
- image: quay.io/cryostat/cryostat-agent-init:0.5.3-snapshot
13241324
name: agent-init
1325-
version: 4.0.2
1325+
version: 4.0.3-dev
13261326
webhookdefinitions:
13271327
- admissionReviewVersions:
13281328
- v1

bundle/metadata/annotations.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ annotations:
44
operators.operatorframework.io.bundle.manifests.v1: manifests/
55
operators.operatorframework.io.bundle.metadata.v1: metadata/
66
operators.operatorframework.io.bundle.package.v1: cryostat-operator
7-
operators.operatorframework.io.bundle.channels.v1: stable
8-
operators.operatorframework.io.bundle.channel.default.v1: stable
7+
operators.operatorframework.io.bundle.channels.v1: alpha
98
operators.operatorframework.io.metrics.builder: operator-sdk-v1.31.0
109
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
1110
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v3

bundle/tests/scorecard/config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ stages:
7070
- entrypoint:
7171
- cryostat-scorecard-tests
7272
- operator-install
73-
image: quay.io/cryostat/cryostat-operator-scorecard:4.0.2-20250611194411
73+
image: quay.io/cryostat/cryostat-operator-scorecard:4.0.3-20250904205423
7474
labels:
7575
suite: cryostat
7676
test: operator-install
@@ -80,7 +80,7 @@ stages:
8080
- entrypoint:
8181
- cryostat-scorecard-tests
8282
- cryostat-cr
83-
image: quay.io/cryostat/cryostat-operator-scorecard:4.0.2-20250611194411
83+
image: quay.io/cryostat/cryostat-operator-scorecard:4.0.3-20250904205423
8484
labels:
8585
suite: cryostat
8686
test: cryostat-cr
@@ -90,7 +90,7 @@ stages:
9090
- entrypoint:
9191
- cryostat-scorecard-tests
9292
- cryostat-multi-namespace
93-
image: quay.io/cryostat/cryostat-operator-scorecard:4.0.2-20250611194411
93+
image: quay.io/cryostat/cryostat-operator-scorecard:4.0.3-20250904205423
9494
labels:
9595
suite: cryostat
9696
test: cryostat-multi-namespace
@@ -100,7 +100,7 @@ stages:
100100
- entrypoint:
101101
- cryostat-scorecard-tests
102102
- cryostat-recording
103-
image: quay.io/cryostat/cryostat-operator-scorecard:4.0.2-20250611194411
103+
image: quay.io/cryostat/cryostat-operator-scorecard:4.0.3-20250904205423
104104
labels:
105105
suite: cryostat
106106
test: cryostat-recording
@@ -110,7 +110,7 @@ stages:
110110
- entrypoint:
111111
- cryostat-scorecard-tests
112112
- cryostat-config-change
113-
image: quay.io/cryostat/cryostat-operator-scorecard:4.0.2-20250611194411
113+
image: quay.io/cryostat/cryostat-operator-scorecard:4.0.3-20250904205423
114114
labels:
115115
suite: cryostat
116116
test: cryostat-config-change
@@ -120,7 +120,7 @@ stages:
120120
- entrypoint:
121121
- cryostat-scorecard-tests
122122
- cryostat-report
123-
image: quay.io/cryostat/cryostat-operator-scorecard:4.0.2-20250611194411
123+
image: quay.io/cryostat/cryostat-operator-scorecard:4.0.3-20250904205423
124124
labels:
125125
suite: cryostat
126126
test: cryostat-report

config/default/image_pull_patch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ spec:
88
spec:
99
containers:
1010
- name: manager
11-
imagePullPolicy: "IfNotPresent"
11+
imagePullPolicy: "Always"

config/default/image_tag_patch.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ spec:
1212
- name: RELATED_IMAGE_OAUTH2_PROXY
1313
value: "quay.io/oauth2-proxy/oauth2-proxy:latest"
1414
- name: RELATED_IMAGE_OPENSHIFT_OAUTH_PROXY
15-
value: "quay.io/cryostat/openshift-oauth-proxy:4.0.2"
15+
value: "quay.io/cryostat/openshift-oauth-proxy:4.0"
1616
- name: RELATED_IMAGE_CORE
17-
value: "quay.io/cryostat/cryostat:4.0.2"
17+
value: "quay.io/cryostat/cryostat:4.0.3-snapshot"
1818
- name: RELATED_IMAGE_DATASOURCE
19-
value: "quay.io/cryostat/jfr-datasource:4.0.2"
19+
value: "quay.io/cryostat/jfr-datasource:4.0.3-snapshot"
2020
- name: RELATED_IMAGE_GRAFANA
21-
value: "quay.io/cryostat/cryostat-grafana-dashboard:4.0.2"
21+
value: "quay.io/cryostat/cryostat-grafana-dashboard:4.0"
2222
- name: RELATED_IMAGE_REPORTS
23-
value: "quay.io/cryostat/cryostat-reports:4.0.2"
23+
value: "quay.io/cryostat/cryostat-reports:4.0.3-snapshot"
2424
- name: RELATED_IMAGE_STORAGE
25-
value: "quay.io/cryostat/cryostat-storage:4.0.2"
25+
value: "quay.io/cryostat/cryostat-storage:4.0"
2626
- name: RELATED_IMAGE_DATABASE
27-
value: "quay.io/cryostat/cryostat-db:4.0.2"
27+
value: "quay.io/cryostat/cryostat-db:4.0"
2828
- name: RELATED_IMAGE_AGENT_PROXY
2929
value: "registry.access.redhat.com/ubi9/nginx-124:latest"
3030
- name: RELATED_IMAGE_AGENT_INIT
31-
value: "quay.io/cryostat/cryostat-agent-init:0.5.2"
31+
value: "quay.io/cryostat/cryostat-agent-init:0.5.3-snapshot"

config/insights/insights_image_pull_patch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ spec:
88
spec:
99
containers:
1010
- name: insights
11-
imagePullPolicy: "IfNotPresent"
11+
imagePullPolicy: "Always"

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ kind: Kustomization
2222
images:
2323
- name: controller
2424
newName: quay.io/cryostat/cryostat-operator
25-
newTag: 4.0.2
25+
newTag: 4.0.3-dev

config/manifests/bases/cryostat-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
annotations:
55
capabilities: Seamless Upgrades
66
categories: Monitoring, Developer Tools
7-
containerImage: quay.io/cryostat/cryostat-operator:4.0.2
7+
containerImage: quay.io/cryostat/cryostat-operator:4.0.3-dev
88
description: JVM monitoring and profiling tool
99
operatorframework.io/initialization-resource: |-
1010
{

0 commit comments

Comments
 (0)