Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(version): bump version to 2.2.0-dev #393

Merged
merged 1 commit into from
May 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SHELL := /bin/bash

# Current Operator version
IMAGE_VERSION ?= 2.1.0-dev
IMAGE_VERSION ?= 2.2.0-dev
BUNDLE_VERSION ?= $(IMAGE_VERSION)
DEFAULT_NAMESPACE ?= quay.io/cryostat
IMAGE_NAMESPACE ?= $(DEFAULT_NAMESPACE)
Expand All @@ -28,19 +28,19 @@ CRD_OPTIONS ?= "crd:trivialVersions=true,preserveUnknownFields=false"
# Images used by the operator
CORE_NAMESPACE ?= $(DEFAULT_NAMESPACE)
CORE_NAME ?= cryostat
CORE_VERSION ?= 2.1.0-SNAPSHOT
CORE_VERSION ?= latest
export CORE_IMG ?= $(CORE_NAMESPACE)/$(CORE_NAME):$(CORE_VERSION)
DATASOURCE_NAMESPACE ?= $(DEFAULT_NAMESPACE)
DATASOURCE_NAME ?= jfr-datasource
DATASOURCE_VERSION ?= 2.0.0
DATASOURCE_VERSION ?= latest
export DATASOURCE_IMG ?= $(DATASOURCE_NAMESPACE)/$(DATASOURCE_NAME):$(DATASOURCE_VERSION)
GRAFANA_NAMESPACE ?= $(DEFAULT_NAMESPACE)
GRAFANA_NAME ?= cryostat-grafana-dashboard
GRAFANA_VERSION ?= 2.0.0
GRAFANA_VERSION ?= latest
export GRAFANA_IMG ?= $(GRAFANA_NAMESPACE)/$(GRAFANA_NAME):$(GRAFANA_VERSION)
REPORTS_NAMESPACE ?= $(DEFAULT_NAMESPACE)
REPORTS_NAME ?= cryostat-reports
REPORTS_VERSION ?= 1.0.0-SNAPSHOT
REPORTS_VERSION ?= latest
export REPORTS_IMG ?= $(REPORTS_NAMESPACE)/$(REPORTS_NAME):$(REPORTS_VERSION)

CERT_MANAGER_VERSION ?= 1.5.3
Expand Down
16 changes: 8 additions & 8 deletions bundle/manifests/cryostat-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ metadata:
]
capabilities: Basic Install
categories: Monitoring, Developer Tools
containerImage: quay.io/cryostat/cryostat-operator:2.1.0-dev
containerImage: quay.io/cryostat/cryostat-operator:2.2.0-dev
createdAt: "2021-04-30 00:00:00"
description: JVM monitoring and profiling tool
operatorframework.io/initialization-resource: |-
Expand All @@ -85,7 +85,7 @@ metadata:
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: github.com/cryostatio/cryostat-operator
support: Cryostat Community
name: cryostat-operator.v2.1.0-dev
name: cryostat-operator.v2.2.0-dev
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -480,18 +480,18 @@ spec:
- /manager
env:
- name: RELATED_IMAGE_CORE
value: quay.io/cryostat/cryostat:2.1.0-SNAPSHOT
value: quay.io/cryostat/cryostat:latest
- name: RELATED_IMAGE_DATASOURCE
value: quay.io/cryostat/jfr-datasource:2.0.0
value: quay.io/cryostat/jfr-datasource:latest
- name: RELATED_IMAGE_GRAFANA
value: quay.io/cryostat/cryostat-grafana-dashboard:2.0.0
value: quay.io/cryostat/cryostat-grafana-dashboard:latest
- name: RELATED_IMAGE_REPORTS
value: quay.io/cryostat/cryostat-reports:1.0.0-SNAPSHOT
value: quay.io/cryostat/cryostat-reports:latest
- name: WATCH_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.annotations['olm.targetNamespaces']
image: quay.io/cryostat/cryostat-operator:2.1.0-dev
image: quay.io/cryostat/cryostat-operator:2.2.0-dev
imagePullPolicy: Always
livenessProbe:
httpGet:
Expand Down Expand Up @@ -740,4 +740,4 @@ spec:
maturity: stable
provider:
name: The Cryostat Community
version: 2.1.0-dev
version: 2.2.0-dev
8 changes: 4 additions & 4 deletions config/default/image_tag_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ spec:
- name: manager
env:
- name: RELATED_IMAGE_CORE
value: "quay.io/cryostat/cryostat:2.1.0-SNAPSHOT"
value: "quay.io/cryostat/cryostat:latest"
- name: RELATED_IMAGE_DATASOURCE
value: "quay.io/cryostat/jfr-datasource:2.0.0"
value: "quay.io/cryostat/jfr-datasource:latest"
- name: RELATED_IMAGE_GRAFANA
value: "quay.io/cryostat/cryostat-grafana-dashboard:2.0.0"
value: "quay.io/cryostat/cryostat-grafana-dashboard:latest"
- name: RELATED_IMAGE_REPORTS
value: "quay.io/cryostat/cryostat-reports:1.0.0-SNAPSHOT"
value: "quay.io/cryostat/cryostat-reports:latest"
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ kind: Kustomization
images:
- name: controller
newName: quay.io/cryostat/cryostat-operator
newTag: 2.1.0-dev
newTag: 2.2.0-dev
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ metadata:
]
capabilities: Basic Install
categories: Monitoring, Developer Tools
containerImage: quay.io/cryostat/cryostat-operator:2.1.0-dev
containerImage: quay.io/cryostat/cryostat-operator:2.2.0-dev
createdAt: "2021-04-30 00:00:00"
description: JVM monitoring and profiling tool
operatorframework.io/initialization-resource: |-
Expand Down Expand Up @@ -418,4 +418,4 @@ spec:
maturity: stable
provider:
name: The Cryostat Community
version: 2.1.0-dev
version: 2.2.0-dev

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.