Skip to content

Commit 98b4685

Browse files
authored
chore(release): update versions for 2.3.0 release (#586)
* update image versions * update and regenerate CSV
1 parent 7766f24 commit 98b4685

File tree

9 files changed

+35
-33
lines changed

9 files changed

+35
-33
lines changed

Makefile

Lines changed: 5 additions & 5 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-
IMAGE_VERSION ?= 2.3.0-dev
11+
IMAGE_VERSION ?= 2.3.0
1212
BUNDLE_VERSION ?= $(IMAGE_VERSION)
1313
DEFAULT_NAMESPACE ?= quay.io/cryostat
1414
IMAGE_NAMESPACE ?= $(DEFAULT_NAMESPACE)
@@ -55,19 +55,19 @@ export APP_NAME ?= Cryostat
5555
# Images used by the operator
5656
CORE_NAMESPACE ?= $(DEFAULT_NAMESPACE)
5757
CORE_NAME ?= cryostat
58-
CORE_VERSION ?= latest
58+
CORE_VERSION ?= 2.3.0
5959
export CORE_IMG ?= $(CORE_NAMESPACE)/$(CORE_NAME):$(CORE_VERSION)
6060
DATASOURCE_NAMESPACE ?= $(DEFAULT_NAMESPACE)
6161
DATASOURCE_NAME ?= jfr-datasource
62-
DATASOURCE_VERSION ?= latest
62+
DATASOURCE_VERSION ?= 2.3.0
6363
export DATASOURCE_IMG ?= $(DATASOURCE_NAMESPACE)/$(DATASOURCE_NAME):$(DATASOURCE_VERSION)
6464
GRAFANA_NAMESPACE ?= $(DEFAULT_NAMESPACE)
6565
GRAFANA_NAME ?= cryostat-grafana-dashboard
66-
GRAFANA_VERSION ?= latest
66+
GRAFANA_VERSION ?= 2.3.0
6767
export GRAFANA_IMG ?= $(GRAFANA_NAMESPACE)/$(GRAFANA_NAME):$(GRAFANA_VERSION)
6868
REPORTS_NAMESPACE ?= $(DEFAULT_NAMESPACE)
6969
REPORTS_NAME ?= cryostat-reports
70-
REPORTS_VERSION ?= latest
70+
REPORTS_VERSION ?= 2.3.0
7171
export REPORTS_IMG ?= $(REPORTS_NAMESPACE)/$(REPORTS_NAME):$(REPORTS_VERSION)
7272

7373
CERT_MANAGER_VERSION ?= 1.7.1

bundle.Dockerfile

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

bundle/manifests/cryostat-operator.clusterserviceversion.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ metadata:
5353
]
5454
capabilities: Seamless Upgrades
5555
categories: Monitoring, Developer Tools
56-
containerImage: quay.io/cryostat/cryostat-operator:2.3.0-dev
57-
createdAt: "2023-05-08T19:40:30Z"
56+
containerImage: quay.io/cryostat/cryostat-operator:2.3.0
57+
createdAt: "2023-05-18T20:23:46Z"
5858
description: JVM monitoring and profiling tool
5959
operatorframework.io/initialization-resource: |-
6060
{
@@ -75,7 +75,7 @@ metadata:
7575
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
7676
repository: github.com/cryostatio/cryostat-operator
7777
support: Cryostat Community
78-
name: cryostat-operator.v2.3.0-dev
78+
name: cryostat-operator.v2.3.0
7979
namespace: placeholder
8080
spec:
8181
apiservicedefinitions: {}
@@ -1051,19 +1051,19 @@ spec:
10511051
- /manager
10521052
env:
10531053
- name: RELATED_IMAGE_CORE
1054-
value: quay.io/cryostat/cryostat:latest
1054+
value: quay.io/cryostat/cryostat:2.3.0
10551055
- name: RELATED_IMAGE_DATASOURCE
1056-
value: quay.io/cryostat/jfr-datasource:latest
1056+
value: quay.io/cryostat/jfr-datasource:2.3.0
10571057
- name: RELATED_IMAGE_GRAFANA
1058-
value: quay.io/cryostat/cryostat-grafana-dashboard:latest
1058+
value: quay.io/cryostat/cryostat-grafana-dashboard:2.3.0
10591059
- name: RELATED_IMAGE_REPORTS
1060-
value: quay.io/cryostat/cryostat-reports:latest
1060+
value: quay.io/cryostat/cryostat-reports:2.3.0
10611061
- name: WATCH_NAMESPACE
10621062
valueFrom:
10631063
fieldRef:
10641064
fieldPath: metadata.annotations['olm.targetNamespaces']
1065-
image: quay.io/cryostat/cryostat-operator:2.3.0-dev
1066-
imagePullPolicy: Always
1065+
image: quay.io/cryostat/cryostat-operator:2.3.0
1066+
imagePullPolicy: IfNotPresent
10671067
livenessProbe:
10681068
httpGet:
10691069
path: /healthz
@@ -1169,12 +1169,12 @@ spec:
11691169
provider:
11701170
name: The Cryostat Community
11711171
relatedImages:
1172-
- image: quay.io/cryostat/cryostat:latest
1172+
- image: quay.io/cryostat/cryostat:2.3.0
11731173
name: core
1174-
- image: quay.io/cryostat/jfr-datasource:latest
1174+
- image: quay.io/cryostat/jfr-datasource:2.3.0
11751175
name: datasource
1176-
- image: quay.io/cryostat/cryostat-grafana-dashboard:latest
1176+
- image: quay.io/cryostat/cryostat-grafana-dashboard:2.3.0
11771177
name: grafana
1178-
- image: quay.io/cryostat/cryostat-reports:latest
1178+
- image: quay.io/cryostat/cryostat-reports:2.3.0
11791179
name: reports
1180-
version: 2.3.0-dev
1180+
version: 2.3.0

bundle/metadata/annotations.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +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: cryostat-operator
7-
operators.operatorframework.io.bundle.channels.v1: alpha
7+
operators.operatorframework.io.bundle.channels.v1: stable
8+
operators.operatorframework.io.bundle.channel.default.v1: stable
89
operators.operatorframework.io.metrics.builder: operator-sdk-v1.28.0
910
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
1011
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v3

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: "Always"
11+
imagePullPolicy: "IfNotPresent"

config/default/image_tag_patch.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ spec:
1010
- name: manager
1111
env:
1212
- name: RELATED_IMAGE_CORE
13-
value: "quay.io/cryostat/cryostat:latest"
13+
value: "quay.io/cryostat/cryostat:2.3.0"
1414
- name: RELATED_IMAGE_DATASOURCE
15-
value: "quay.io/cryostat/jfr-datasource:latest"
15+
value: "quay.io/cryostat/jfr-datasource:2.3.0"
1616
- name: RELATED_IMAGE_GRAFANA
17-
value: "quay.io/cryostat/cryostat-grafana-dashboard:latest"
17+
value: "quay.io/cryostat/cryostat-grafana-dashboard:2.3.0"
1818
- name: RELATED_IMAGE_REPORTS
19-
value: "quay.io/cryostat/cryostat-reports:latest"
19+
value: "quay.io/cryostat/cryostat-reports:2.3.0"

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ kind: Kustomization
1313
images:
1414
- name: controller
1515
newName: quay.io/cryostat/cryostat-operator
16-
newTag: 2.3.0-dev
16+
newTag: 2.3.0

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ metadata:
44
annotations:
55
capabilities: Seamless Upgrades
66
categories: Monitoring, Developer Tools
7-
containerImage: quay.io/cryostat/cryostat-operator:2.3.0-dev
8-
createdAt: "2022-11-16 00:00:00"
7+
containerImage: quay.io/cryostat/cryostat-operator:2.3.0
8+
createdAt: "2023-05-18 00:00:00"
99
description: JVM monitoring and profiling tool
1010
operatorframework.io/initialization-resource: |-
1111
{

internal/controllers/const_generated.go

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)