Skip to content

CLOUDP-325334: Remove hardcoding of OM 7.0.12 #339

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

Merged
merged 2 commits into from
Aug 12, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 0 additions & 4 deletions pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -1458,10 +1458,6 @@ def gather_latest_agent_versions(release: Dict, agent_to_build: str = "") -> Lis
)
)

# TODO: Remove this once we don't need to use OM 7.0.12 in the OM Multicluster DR tests
# https://jira.mongodb.org/browse/CLOUDP-297377
agent_versions_to_build.append(("107.0.12.8669-1", "100.10.0"))

if agent_to_build != "":
for agent_tuple in agent_versions_to_build:
if agent_tuple[0] == agent_to_build:
Expand Down
3 changes: 0 additions & 3 deletions pipeline_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,6 @@ def test_build_latest_agent_versions():
latest_agents = gather_latest_agent_versions(release_json)
expected_agents = [
("107.0.11.8645-1", "100.10.0"),
# TODO: Remove this once we don't need to use OM 7.0.12 in the OM Multicluster DR tests
# https://jira.mongodb.org/browse/CLOUDP-297377
("107.0.12.8669-1", "100.10.0"),
("12.0.31.7825-1", "100.9.4"),
("13.19.0.8937-1", "100.9.4"),
]
Expand Down
5 changes: 0 additions & 5 deletions scripts/dev/contexts/e2e_multi_cluster_om_appdb
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@ script_dir=$(dirname "${script_name}")
source "${script_dir}/root-context"
source "${script_dir}/variables/om70"

# TODO Remove this once the startup script for OM can handle skipping preflight checks.
# As it stands now, OM 7.0.13 will fail the preflight checks in a disaster recovery scenario.
# https://jira.mongodb.org/browse/CLOUDP-297377
export CUSTOM_OM_VERSION=7.0.12

export KUBE_ENVIRONMENT_NAME=multi
export CLUSTER_NAME="kind-e2e-cluster-1"
export MEMBER_CLUSTERS="kind-e2e-cluster-1 kind-e2e-cluster-2 kind-e2e-cluster-3"
Expand Down
5 changes: 0 additions & 5 deletions scripts/dev/contexts/e2e_static_multi_cluster_om_appdb
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@ script_dir=$(dirname "${script_name}")
source "${script_dir}/root-context"
source "${script_dir}/variables/om70"

# TODO Remove this once the startup script for OM can handle skipping preflight checks.
# As it stands now, OM 7.0.13 will fail the preflight checks in a disaster recovery scenario.
# https://jira.mongodb.org/browse/CLOUDP-297377
export CUSTOM_OM_VERSION=7.0.12

export KUBE_ENVIRONMENT_NAME=multi
export CLUSTER_NAME="kind-e2e-cluster-1"
export MEMBER_CLUSTERS="kind-e2e-cluster-1 kind-e2e-cluster-2 kind-e2e-cluster-3"
Expand Down
4 changes: 0 additions & 4 deletions scripts/release/atomic_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -495,8 +495,4 @@ def gather_latest_agent_versions(release: Dict) -> List[Tuple[str, str]]:
)
)

# TODO: Remove this once we don't need to use OM 7.0.12 in the OM Multicluster DR tests
# https://jira.mongodb.org/browse/CLOUDP-297377
agent_versions_to_build.append(("107.0.12.8669-1", "100.10.0"))

return sorted(list(set(agent_versions_to_build)))
Loading