Skip to content

Commit

Permalink
Revert "update versions for 2.3.1 release"
Browse files Browse the repository at this point in the history
This reverts commit 2b88afc.
  • Loading branch information
mwangggg committed Sep 8, 2023
1 parent 2b88afc commit 0dad230
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 29 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ OS = $(shell go env GOOS)
ARCH = $(shell go env GOARCH)

# Current Operator version
IMAGE_VERSION ?= 2.3.1
IMAGE_VERSION ?= 2.3.1-dev
BUNDLE_VERSION ?= $(IMAGE_VERSION)
DEFAULT_NAMESPACE ?= quay.io/cryostat
IMAGE_NAMESPACE ?= $(DEFAULT_NAMESPACE)
Expand Down Expand Up @@ -55,19 +55,19 @@ export APP_NAME ?= Cryostat
# Images used by the operator
CORE_NAMESPACE ?= $(DEFAULT_NAMESPACE)
CORE_NAME ?= cryostat
CORE_VERSION ?= 2.3.1
CORE_VERSION ?= 2.3.1-snapshot
export CORE_IMG ?= $(CORE_NAMESPACE)/$(CORE_NAME):$(CORE_VERSION)
DATASOURCE_NAMESPACE ?= $(DEFAULT_NAMESPACE)
DATASOURCE_NAME ?= jfr-datasource
DATASOURCE_VERSION ?= 2.3.1
DATASOURCE_VERSION ?= 2.3.1-snapshot
export DATASOURCE_IMG ?= $(DATASOURCE_NAMESPACE)/$(DATASOURCE_NAME):$(DATASOURCE_VERSION)
GRAFANA_NAMESPACE ?= $(DEFAULT_NAMESPACE)
GRAFANA_NAME ?= cryostat-grafana-dashboard
GRAFANA_VERSION ?= cryostat-v2.3
export GRAFANA_IMG ?= $(GRAFANA_NAMESPACE)/$(GRAFANA_NAME):$(GRAFANA_VERSION)
REPORTS_NAMESPACE ?= $(DEFAULT_NAMESPACE)
REPORTS_NAME ?= cryostat-reports
REPORTS_VERSION ?= 2.3.1
REPORTS_VERSION ?= 2.3.1-snapshot
export REPORTS_IMG ?= $(REPORTS_NAMESPACE)/$(REPORTS_NAME):$(REPORTS_VERSION)

CERT_MANAGER_VERSION ?= 1.7.1
Expand Down
2 changes: 1 addition & 1 deletion bundle.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
LABEL operators.operatorframework.io.bundle.package.v1=cryostat-operator
LABEL operators.operatorframework.io.bundle.channels.v1=stable
LABEL operators.operatorframework.io.bundle.channel.default.v1=stable
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.28.1
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.28.0
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3

Expand Down
26 changes: 13 additions & 13 deletions bundle/manifests/cryostat-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ metadata:
]
capabilities: Seamless Upgrades
categories: Monitoring, Developer Tools
containerImage: quay.io/cryostat/cryostat-operator:2.3.1
createdAt: "2023-09-08T18:15:46Z"
containerImage: quay.io/cryostat/cryostat-operator:2.3.1-dev
createdAt: "2023-05-19T17:53:38Z"
description: JVM monitoring and profiling tool
operatorframework.io/initialization-resource: |-
{
Expand All @@ -71,11 +71,11 @@ metadata:
}
}
}
operators.operatorframework.io/builder: operator-sdk-v1.28.1
operators.operatorframework.io/builder: operator-sdk-v1.28.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: github.com/cryostatio/cryostat-operator
support: Cryostat Community
name: cryostat-operator.v2.3.1
name: cryostat-operator.v2.3.1-dev
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -1051,19 +1051,19 @@ spec:
- /manager
env:
- name: RELATED_IMAGE_CORE
value: quay.io/cryostat/cryostat:2.3.1
value: quay.io/cryostat/cryostat:2.3.1-snapshot
- name: RELATED_IMAGE_DATASOURCE
value: quay.io/cryostat/jfr-datasource:2.3.1
value: quay.io/cryostat/jfr-datasource:2.3.1-snapshot
- name: RELATED_IMAGE_GRAFANA
value: quay.io/cryostat/cryostat-grafana-dashboard:cryostat-v2.3
- name: RELATED_IMAGE_REPORTS
value: quay.io/cryostat/cryostat-reports:2.3.1
value: quay.io/cryostat/cryostat-reports:2.3.1-snapshot
- name: WATCH_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.annotations['olm.targetNamespaces']
image: quay.io/cryostat/cryostat-operator:2.3.1
imagePullPolicy: IfNotPresent
image: quay.io/cryostat/cryostat-operator:2.3.1-dev
imagePullPolicy: Always
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -1169,12 +1169,12 @@ spec:
provider:
name: The Cryostat Community
relatedImages:
- image: quay.io/cryostat/cryostat:2.3.1
- image: quay.io/cryostat/cryostat:2.3.1-snapshot
name: core
- image: quay.io/cryostat/jfr-datasource:2.3.1
- image: quay.io/cryostat/jfr-datasource:2.3.1-snapshot
name: datasource
- image: quay.io/cryostat/cryostat-grafana-dashboard:cryostat-v2.3
name: grafana
- image: quay.io/cryostat/cryostat-reports:2.3.1
- image: quay.io/cryostat/cryostat-reports:2.3.1-snapshot
name: reports
version: 2.3.1
version: 2.3.1-dev
2 changes: 1 addition & 1 deletion bundle/metadata/annotations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ annotations:
operators.operatorframework.io.bundle.package.v1: cryostat-operator
operators.operatorframework.io.bundle.channels.v1: stable
operators.operatorframework.io.bundle.channel.default.v1: stable
operators.operatorframework.io.metrics.builder: operator-sdk-v1.28.1
operators.operatorframework.io.metrics.builder: operator-sdk-v1.28.0
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v3

Expand Down
2 changes: 1 addition & 1 deletion config/default/image_pull_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ spec:
spec:
containers:
- name: manager
imagePullPolicy: "IfNotPresent"
imagePullPolicy: "Always"
6 changes: 3 additions & 3 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.3.1"
value: "quay.io/cryostat/cryostat:2.3.1-snapshot"
- name: RELATED_IMAGE_DATASOURCE
value: "quay.io/cryostat/jfr-datasource:2.3.1"
value: "quay.io/cryostat/jfr-datasource:2.3.1-snapshot"
- name: RELATED_IMAGE_GRAFANA
value: "quay.io/cryostat/cryostat-grafana-dashboard:cryostat-v2.3"
- name: RELATED_IMAGE_REPORTS
value: "quay.io/cryostat/cryostat-reports:2.3.1"
value: "quay.io/cryostat/cryostat-reports:2.3.1-snapshot"
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.3.1
newTag: 2.3.1-dev
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ metadata:
annotations:
capabilities: Seamless Upgrades
categories: Monitoring, Developer Tools
containerImage: quay.io/cryostat/cryostat-operator:2.3.1
createdAt: "2023-09-08 00:00:00"
containerImage: quay.io/cryostat/cryostat-operator:2.3.1-dev
createdAt: "2023-05-19 00:00:00"
description: JVM monitoring and profiling tool
operatorframework.io/initialization-resource: |-
{
Expand Down
6 changes: 3 additions & 3 deletions internal/controllers/const_generated.go

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

0 comments on commit 0dad230

Please sign in to comment.