Skip to content

[Don't Review] Use custom build of OM to test if failing tests pass #245

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ COPY --from=base /data/scripts /opt/scripts


{% block static %}
RUN curl --fail -L -o ops_manager.tar.gz {{ om_download_url }} \
RUN curl --fail -L -o ops_manager.tar.gz https://mciuploads.s3.amazonaws.com/mms-ops-manager-8.0/mms_ops_manager_8.0_package_rpm_patch_aef37d29bf8fff2b6a354271f649a936ef14d43e_686d413064e4b600075e0ad1_25_07_08_16_03_01/PACKAGE_OPS_MANAGER/mongodb-mms-8.0.11.500.20250708T1655Z.tar.gz \
&& tar -xzf ops_manager.tar.gz \
&& rm ops_manager.tar.gz \
&& mv mongodb-mms* "${MMS_HOME}"
Expand Down
3 changes: 2 additions & 1 deletion pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,8 @@ def build_om_image(build_configuration: BuildConfiguration):
if om_version is None:
raise ValueError("`om_version` should be defined.")

om_download_url = os.environ.get("om_download_url", "")
# om_download_url = os.environ.get("om_download_url", "")
om_download_url = "https://mciuploads.s3.amazonaws.com/mms-ops-manager-8.0/mms_ops_manager_8.0_package_rpm_patch_aef37d29bf8fff2b6a354271f649a936ef14d43e_686d413064e4b600075e0ad1_25_07_08_16_03_01/PACKAGE_OPS_MANAGER/mongodb-mms-8.0.11.500.20250708T1655Z.tar.gz"
if om_download_url == "":
om_download_url = find_om_url(om_version)

Expand Down