From a7cafe2c25d7359cfc1a5679eb33874f78a98297 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Andr=C3=A9?= Date: Fri, 12 Jun 2026 09:58:56 +0200 Subject: [PATCH] openstack: inherit TEST_ARGS in openstack-tests steps The chain-level TEST_ARGS=--disable-monitor=termination-message-policy only affected the openshift-e2e-test step (step 1 of the chain). Both openstack-test-openstack-commands.sh and openstack-test-openstack-ote- commands.sh were clobbering TEST_ARGS with 'declare TEST_ARGS=""', so the monitor was still running in step 2. Change to 'declare TEST_ARGS="${TEST_ARGS:-}"' so the scripts inherit the chain's value. --- .../test/openstack-ote/openstack-test-openstack-ote-commands.sh | 2 +- .../test/openstack/openstack-test-openstack-commands.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-operator/step-registry/openstack/test/openstack-ote/openstack-test-openstack-ote-commands.sh b/ci-operator/step-registry/openstack/test/openstack-ote/openstack-test-openstack-ote-commands.sh index a15727795873f..1124d01e231bc 100755 --- a/ci-operator/step-registry/openstack/test/openstack-ote/openstack-test-openstack-ote-commands.sh +++ b/ci-operator/step-registry/openstack/test/openstack-ote/openstack-test-openstack-ote-commands.sh @@ -5,7 +5,7 @@ set -Eeuo pipefail export OS_CLIENT_CONFIG_FILE="${SHARED_DIR}/clouds.yaml" export PATH=/usr/libexec/origin:$PATH -declare TEST_ARGS='' +declare TEST_ARGS="${TEST_ARGS:-}" # Force the IPv6 endpoint if [[ "${CONFIG_TYPE}" == *"singlestackv6"* ]]; then diff --git a/ci-operator/step-registry/openstack/test/openstack/openstack-test-openstack-commands.sh b/ci-operator/step-registry/openstack/test/openstack/openstack-test-openstack-commands.sh index 817a49385f17c..c0aacf1423a2e 100644 --- a/ci-operator/step-registry/openstack/test/openstack/openstack-test-openstack-commands.sh +++ b/ci-operator/step-registry/openstack/test/openstack/openstack-test-openstack-commands.sh @@ -4,7 +4,7 @@ set -Eeuo pipefail export OS_CLIENT_CONFIG_FILE="${SHARED_DIR}/clouds.yaml" -declare TEST_ARGS='' +declare TEST_ARGS="${TEST_ARGS:-}" # Force the IPv6 endpoint if [[ "${CONFIG_TYPE}" == *"singlestackv6"* ]]; then