File tree Expand file tree Collapse file tree 7 files changed +10
-9
lines changed
scripts/dev/contexts/variables Expand file tree Collapse file tree 7 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ variables:
6
6
7
7
- &ops_manager_60_latest 6.0.20 # The order/index is important, since these are anchors. Please do not change
8
8
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
10
10
11
11
- &e2e_include_expansions_in_env
12
12
include_expansions_in_env :
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ relatedImages:
132
132
- 6.0.18
133
133
- 6.0.19
134
134
- 6.0.20
135
- - 7.0.0
135
+ - 7.0.0-rc8
136
136
mongodb :
137
137
- 4.4.0-ubi8
138
138
- 4.4.1-ubi8
Original file line number Diff line number Diff line change @@ -553,12 +553,13 @@ def inner(build_configuration: BuildConfiguration):
553
553
)
554
554
completed_versions = set ()
555
555
for version in supported_versions :
556
+ version_without_rc = semver .finalize_version (version )
556
557
if (
557
558
min_version is not None
558
559
and max_version is not None
559
560
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
562
563
)
563
564
):
564
565
continue
Original file line number Diff line number Diff line change @@ -395,8 +395,8 @@ spec:
395
395
value : " quay.io/mongodb/mongodb-enterprise-ops-manager-ubi:6.0.19"
396
396
- name : RELATED_IMAGE_OPS_MANAGER_IMAGE_REPOSITORY_6_0_20
397
397
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 "
400
400
# since the official server images end with a different suffix we can re-use the same $mongodbImageEnv
401
401
- name : RELATED_IMAGE_MONGODB_IMAGE_4_4_0_ubi8
402
402
value : " quay.io/mongodb/mongodb-enterprise-server:4.4.0-ubi8"
Original file line number Diff line number Diff line change 74
74
" 6.0.18" ,
75
75
" 6.0.19" ,
76
76
" 6.0.20" ,
77
- " 7.0.0"
77
+ " 7.0.0-rc8 "
78
78
],
79
79
"variants" : [
80
80
" ubi"
Original file line number Diff line number Diff line change @@ -17,4 +17,4 @@ export CUSTOM_APPDB_VERSION=7.0.2-ent
17
17
export TEST_MODE=opsmanager
18
18
export OPS_MANAGER_REGISTRY=268558157000.dkr.ecr.us-east-1.amazonaws.com/images/ubi
19
19
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"
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ set -Eeou pipefail
5
5
script_name=$( readlink -f " ${BASH_SOURCE[0]} " )
6
6
script_dir=$( dirname " ${script_name} " )
7
7
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"
9
9
10
10
om_version=$( grep -E " ^\s*-\s*&ops_manager_70_latest\s+(\S+)\s+#" < " $script_dir " /../../../../.evergreen.yml | awk ' {print $3}' )
11
11
export om_version
You can’t perform that action at this time.
0 commit comments