From 26bb84241f03b692305f4b7253af201bfc3bc4ff Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Mon, 15 Jun 2026 14:49:17 +0100 Subject: [PATCH] hypershift/openstack: fix base domain to match Route53 credentials PR #80321 (4b47d131ea2) switched the OpenStack e2e execute step from the generic .awscred to hypershift-pool-aws-credentials, which owns the ci.hypershift.devcluster.openshift.com Route53 zone. However, the --e2e.base-domain flag was left as origin-ci-int-aws.dev.rhcloud.com, which is owned by the shiftstack-aws credential. This mismatch causes LookupZone to fail because hypershift-pool-aws-credentials cannot find origin-ci-int-aws.dev.rhcloud.com among its hosted zones. Align the base domain with the credentials by switching to ci.hypershift.devcluster.openshift.com, matching the pattern used by the AWS nested e2e step (hypershift-aws-run-e2e-nested-commands.sh). Signed-off-by: Stephen Finucane Co-Authored-By: Claude Opus 4.6 (1M context) --- .../e2e/execute/hypershift-openstack-e2e-execute-commands.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-operator/step-registry/hypershift/openstack/e2e/execute/hypershift-openstack-e2e-execute-commands.sh b/ci-operator/step-registry/hypershift/openstack/e2e/execute/hypershift-openstack-e2e-execute-commands.sh index 52bbeaffaa96b..852d07cf861fd 100755 --- a/ci-operator/step-registry/hypershift/openstack/e2e/execute/hypershift-openstack-e2e-execute-commands.sh +++ b/ci-operator/step-registry/hypershift/openstack/e2e/execute/hypershift-openstack-e2e-execute-commands.sh @@ -40,7 +40,7 @@ hack/ci-test-e2e.sh ${E2E_EXTRA_ARGS} \ --e2e.pull-secret-file=/etc/ci-pull-credentials/.dockerconfigjson \ --e2e.node-pool-replicas=2 \ --e2e.aws-credentials-file=/etc/hypershift-pool-aws-credentials/credentials \ - --e2e.base-domain=origin-ci-int-aws.dev.rhcloud.com \ + --e2e.base-domain=ci.hypershift.devcluster.openshift.com \ --test.run="${E2E_TESTS_REGEX}" \ --test.parallel=20 \ --e2e.platform="OpenStack" \