Skip to content

Commit 52f4919

Browse files
authored
CLOUDP-350339: Fix e2e_om_ops_manager_backup_restore_minio (#510)
# Summary This test started failing without code changes on the repo. My hypothesis is Go 1.24.8 that introduced stricter validations to DNS names in x509 certificates https://go.dev/doc/devel/release#go1.24.minor ## Proof of Work Tests must be green. This test was slightly flaky before so it may still fail. But it should not fail systematically after 7 min anymore. ## Checklist - [X] Have you linked a jira ticket and/or is the ticket in the title? - [X] Have you checked whether your jira ticket required DOCSP changes? - [X] Have you added changelog file? - use `skip-changelog` label if not needed - refer to [Changelog files and Release Notes](https://github.com/mongodb/mongodb-kubernetes/blob/master/CONTRIBUTING.md#changelog-files-and-release-notes) section in CONTRIBUTING.md for more details
1 parent 749c1a3 commit 52f4919

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

docker/mongodb-kubernetes-tests/tests/opsmanager/om_ops_manager_backup_restore_minio.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,15 @@ def tenant_name() -> str:
9494
@fixture(scope="module")
9595
def tenant_domains() -> List[str]:
9696
return [
97-
"tenant-0-pool-0-{0...3}.tenant-0-hl.tenant-0.svc.cluster.local",
97+
"tenant-0-pool-0-0.tenant-0-hl.tenant-0.svc.cluster.local",
98+
"tenant-0-pool-0-1.tenant-0-hl.tenant-0.svc.cluster.local",
99+
"tenant-0-pool-0-2.tenant-0-hl.tenant-0.svc.cluster.local",
100+
"tenant-0-pool-0-3.tenant-0-hl.tenant-0.svc.cluster.local",
98101
"minio.tenant-0.svc.cluster.local",
99102
"minio.tenant-0",
100103
"minio.tenant-0.svc",
101-
".tenant-0-hl.tenant-0.svc.cluster.local",
102-
".tenant-0.svc.cluster.local",
104+
"*.tenant-0-hl.tenant-0.svc.cluster.local",
105+
"*.tenant-0.svc.cluster.local",
103106
]
104107

105108

0 commit comments

Comments
 (0)