diff --git a/buildscripts/resmokeconfig/suites/external_auth_oidc_azure.yml b/buildscripts/resmokeconfig/suites/external_auth_oidc_azure.yml index 96c487c2833..056cfa61d63 100644 --- a/buildscripts/resmokeconfig/suites/external_auth_oidc_azure.yml +++ b/buildscripts/resmokeconfig/suites/external_auth_oidc_azure.yml @@ -1,6 +1,9 @@ test_kind: js_test selector: + exclude_files: + # TODO: SERVER-109999 Remove this line. + - src/mongo/db/modules/enterprise/jstests/external_auth_oidc_azure/oidc_e2e_azure_machine.js roots: - src/mongo/db/modules/enterprise/jstests/external_auth_oidc_azure/*.js diff --git a/evergreen/external_auth_azure_setup.sh b/evergreen/external_auth_azure_setup.sh index 4e9bb578632..26f854623ed 100644 --- a/evergreen/external_auth_azure_setup.sh +++ b/evergreen/external_auth_azure_setup.sh @@ -44,4 +44,5 @@ ls -al $HOME/azure_remote_key # This script enables ingress on the Azure Container App instance that we will use to obtain our managed identity token, # restrict ingress to the local, publicly-facing IP of the host we are running on, and then output the hostname of the container app into a local file # so that it can be dynamically consumed by subsequent test steps (such as get_token.py) -python src/mongo/db/modules/enterprise/jstests/external_auth_oidc_azure/lib/toggle_ingress.py enable --config_file=$HOME/azure_e2e_config.json --lock_file=/tmp/azure_oidc.lock | tee $HOME/azure_remote_host +# TODO: SERVER-109999 Uncomment or remove the following. +# python src/mongo/db/modules/enterprise/jstests/external_auth_oidc_azure/lib/toggle_ingress.py enable --config_file=$HOME/azure_e2e_config.json --lock_file=/tmp/azure_oidc.lock | tee $HOME/azure_remote_host diff --git a/evergreen/external_auth_azure_teardown.sh b/evergreen/external_auth_azure_teardown.sh index 4cb75ec08d5..e05ddc643ff 100644 --- a/evergreen/external_auth_azure_teardown.sh +++ b/evergreen/external_auth_azure_teardown.sh @@ -18,7 +18,8 @@ if [ -f "${HOME}/oidc_azure_container_key" ]; then echo "Cleaned up container key" fi -python src/mongo/db/modules/enterprise/jstests/external_auth_oidc_azure/lib/toggle_ingress.py disable --config_file=$HOME/azure_e2e_config.json --lock_file=/tmp/azure_oidc.lock +# TODO: SERVER-109999 Uncomment or remove this line. +# python src/mongo/db/modules/enterprise/jstests/external_auth_oidc_azure/lib/toggle_ingress.py disable --config_file=$HOME/azure_e2e_config.json --lock_file=/tmp/azure_oidc.lock # Clean up the config file, if it exists if [ -f "${HOME}/azure_e2e_config.json" ]; then