Skip to content

Commit a6a23bb

Browse files
nammnfealebenpae
authored andcommitted
bump om7 to rc8 and rename in releasejson (#3267)
1 parent 2b96b7e commit a6a23bb

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

.evergreen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ variables:
66

77
- &ops_manager_60_latest 6.0.20 # The order/index is important, since these are anchors. Please do not change
88

9-
- &ops_manager_70_latest 7.0.0 # The order/index is important, since these are anchors. Please do not change
9+
- &ops_manager_70_latest 7.0.0-rc8 # The order/index is important, since these are anchors. Please do not change
1010

1111
- &e2e_include_expansions_in_env
1212
include_expansions_in_env:

helm_chart/values-openshift.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ relatedImages:
132132
- 6.0.18
133133
- 6.0.19
134134
- 6.0.20
135-
- 7.0.0
135+
- 7.0.0-rc8
136136
mongodb:
137137
- 4.4.0-ubi8
138138
- 4.4.1-ubi8

pipeline.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -553,12 +553,13 @@ def inner(build_configuration: BuildConfiguration):
553553
)
554554
completed_versions = set()
555555
for version in supported_versions:
556+
version_without_rc = semver.finalize_version(version)
556557
if (
557558
min_version is not None
558559
and max_version is not None
559560
and (
560-
semver.compare(version, min_version) < 0
561-
or semver.compare(version, max_version) >= 0
561+
semver.compare(version_without_rc, min_version) < 0
562+
or semver.compare(version_without_rc, max_version) >= 0
562563
)
563564
):
564565
continue

public/mongodb-enterprise-openshift.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,8 +395,8 @@ spec:
395395
value: "quay.io/mongodb/mongodb-enterprise-ops-manager-ubi:6.0.19"
396396
- name: RELATED_IMAGE_OPS_MANAGER_IMAGE_REPOSITORY_6_0_20
397397
value: "quay.io/mongodb/mongodb-enterprise-ops-manager-ubi:6.0.20"
398-
- name: RELATED_IMAGE_OPS_MANAGER_IMAGE_REPOSITORY_7_0_0
399-
value: "quay.io/mongodb/mongodb-enterprise-ops-manager-ubi:7.0.0"
398+
- name: RELATED_IMAGE_OPS_MANAGER_IMAGE_REPOSITORY_7_0_0_rc8
399+
value: "quay.io/mongodb/mongodb-enterprise-ops-manager-ubi:7.0.0-rc8"
400400
# since the official server images end with a different suffix we can re-use the same $mongodbImageEnv
401401
- name: RELATED_IMAGE_MONGODB_IMAGE_4_4_0_ubi8
402402
value: "quay.io/mongodb/mongodb-enterprise-server:4.4.0-ubi8"

release.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"6.0.18",
7575
"6.0.19",
7676
"6.0.20",
77-
"7.0.0"
77+
"7.0.0-rc8"
7878
],
7979
"variants": [
8080
"ubi"

scripts/dev/contexts/variables/om70

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ export CUSTOM_APPDB_VERSION=7.0.2-ent
1717
export TEST_MODE=opsmanager
1818
export OPS_MANAGER_REGISTRY=268558157000.dkr.ecr.us-east-1.amazonaws.com/images/ubi
1919
export APPDB_REGISTRY=268558157000.dkr.ecr.us-east-1.amazonaws.com/images/ubi
20-
export om_download_url="https://mciuploads.s3.amazonaws.com/mms-ops-manager-main/mms_ops_manager_7.0_package_rpm_84fce5296df24bfafe911ec65ee97ed456ba2b9b_23_11_06_15_48_13/PACKAGE_OPS_MANAGER/mongodb-mms-7.0.0-rc4.500.20231106T1551Z.tar.gz"
20+
export om_download_url="https://s3.amazonaws.com/mongodb-mms-build-onprem/6973db68b4c2581b5814d1183e4d17c208ba9599/mongodb-mms-7.0.0-rc8.500.20231127T2012Z.tar.gz"

scripts/dev/contexts/variables/om70_image

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -Eeou pipefail
55
script_name=$(readlink -f "${BASH_SOURCE[0]}")
66
script_dir=$(dirname "${script_name}")
77

8-
export om_download_url="https://mciuploads.s3.amazonaws.com/mms-ops-manager-main/mms_ops_manager_7.0_package_rpm_84fce5296df24bfafe911ec65ee97ed456ba2b9b_23_11_06_15_48_13/PACKAGE_OPS_MANAGER/mongodb-mms-7.0.0-rc4.500.20231106T1551Z.tar.gz"
8+
export om_download_url="https://s3.amazonaws.com/mongodb-mms-build-onprem/6973db68b4c2581b5814d1183e4d17c208ba9599/mongodb-mms-7.0.0-rc8.500.20231127T2012Z.tar.gz"
99

1010
om_version=$(grep -E "^\s*-\s*&ops_manager_70_latest\s+(\S+)\s+#" < "$script_dir"/../../../../.evergreen.yml | awk '{print $3}')
1111
export om_version

0 commit comments

Comments
 (0)