Skip to content

Commit 7df7461

Browse files
committed
[pwx-29425] Rename releae 1.11.0 to 23.3.0
1 parent 9683334 commit 7df7461

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ ifeq ($(BUILD_TYPE),debug)
5656
BUILDFLAGS += -gcflags "-N -l"
5757
endif
5858

59-
RELEASE_VER := 2.0.0
59+
RELEASE_VER := 99.9.9
6060
BASE_DIR := $(shell git rev-parse --show-toplevel)
6161
GIT_SHA := $(shell git rev-parse --short HEAD)
6262
BIN := $(BASE_DIR)/bin

deploy/olm-catalog/portworx/1.11.0/portworx-certified.clusterserviceversion.yaml renamed to deploy/olm-catalog/portworx/23.3.0/portworx-certified.clusterserviceversion.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
apiVersion: operators.coreos.com/v1alpha1
22
kind: ClusterServiceVersion
33
metadata:
4-
name: portworx-operator.v1.11.0
4+
name: portworx-operator.v23.3.0
55
namespace: placeholder
66
annotations:
77
capabilities: Auto Pilot
88
categories: "Storage"
99
description: Cloud native storage solution for production workloads
10-
containerImage: portworx/px-operator:1.11.0-dev
10+
containerImage: portworx/px-operator:23.3.0-dev
1111
repository: https://github.com/libopenstorage/operator
1212
createdAt: 2022-12-22T19:26:21Z
1313
support: Portworx, Inc
@@ -49,8 +49,8 @@ metadata:
4949
]
5050
spec:
5151
displayName: Portworx Enterprise
52-
version: 1.11.0
53-
minKubeVersion: "1.12.0"
52+
version: 23.3.0
53+
minKubeVersion: "1.21.0"
5454
maturity: stable
5555
replaces: portworx-operator.v1.10.2
5656
maintainers:
@@ -215,7 +215,7 @@ spec:
215215
topologyKey: kubernetes.io/hostname
216216
containers:
217217
- name: portworx-operator
218-
image: portworx/px-operator:1.11.0-dev
218+
image: portworx/px-operator:23.3.0-dev
219219
imagePullPolicy: Always
220220
command:
221221
- /operator

deploy/olm-catalog/portworx/2.0.0/portworx-certified.clusterserviceversion.yaml renamed to deploy/olm-catalog/portworx/99.9.9/portworx-certified.clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: operators.coreos.com/v1alpha1
22
kind: ClusterServiceVersion
33
metadata:
4-
name: portworx-operator.v2.0.0
4+
name: portworx-operator.v99.9.9
55
namespace: placeholder
66
annotations:
77
capabilities: Auto Pilot
@@ -49,10 +49,10 @@ metadata:
4949
]
5050
spec:
5151
displayName: Portworx Enterprise
52-
version: 2.0.0
53-
minKubeVersion: "1.12.0"
52+
version: 99.9.9
53+
minKubeVersion: "1.21.0"
5454
maturity: stable
55-
replaces: portworx-operator.v1.10.0
55+
replaces: portworx-operator.v1.10.4
5656
maintainers:
5757
- name: Portworx
5858
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
packageName: portworx-certified
22
channels:
33
- name: alpha
4-
currentCSV: portworx-operator.v2.0.0
4+
currentCSV: portworx-operator.v99.9.9
55
- name: stable
6-
currentCSV: portworx-operator.v2.0.0
6+
currentCSV: portworx-operator.v99.9.9
77
defaultChannel: stable

pkg/util/test/util.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const (
9797
PxMasterVersion = "3.0.0.0"
9898

9999
// PxOperatorMasterVersion is a tag for PX Operator master version
100-
PxOperatorMasterVersion = "9.9.9.9"
100+
PxOperatorMasterVersion = "99.9.9"
101101

102102
// AksPVCControllerSecurePort is the PVC controller secure port.
103103
AksPVCControllerSecurePort = "10261"

test/integration_test/basic_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,10 +477,10 @@ func BasicTelemetryRegression(tc *types.TestCase) func(*testing.T) {
477477
cluster = ci_utils.DeployAndValidateStorageCluster(cluster, ci_utils.PxSpecImages, t)
478478
telemetryEnabled := cluster.Spec.Monitoring != nil && cluster.Spec.Monitoring.Telemetry != nil && cluster.Spec.Monitoring.Telemetry.Enabled
479479

480-
// Validate Telemetry is enabled by default with PX 2.12+ and Operator 1.11+
480+
// Validate Telemetry is enabled by default with PX 2.12+ and Operator 23.3.0+
481481
pxVersion := testutil.GetPortworxVersion(cluster)
482482
opVersion, _ := testutil.GetPxOperatorVersion()
483-
if pxVersion.GreaterThanOrEqual(pxVer2_12) && opVersion.GreaterThanOrEqual(ci_utils.PxOperatorVer1_11) {
483+
if pxVersion.GreaterThanOrEqual(pxVer2_12) && opVersion.GreaterThanOrEqual(ci_utils.PxOperatorVer23_3) {
484484
logrus.Infof("Validate Telemetry is enabled by default, PX version [%s], operator version [%s]", pxVersion, opVersion)
485485
require.True(t, telemetryEnabled, "failed to validate default Telemetry status: expected enabled [true], actual enabled [%v]", telemetryEnabled)
486486

0 commit comments

Comments
 (0)