From b74ab58f5343e4b839ef28b067bc1d78fa73e999 Mon Sep 17 00:00:00 2001 From: Sid Shukla Date: Thu, 2 May 2024 19:55:59 +0200 Subject: [PATCH] Update ci-e2e.sh to quote LABEL_FILTERS value (#429) This is to ensure the full value of LABEL_FILTERS gets propagated. --- scripts/ci-e2e.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/ci-e2e.sh b/scripts/ci-e2e.sh index 549e46e055..1c1df6c1f9 100755 --- a/scripts/ci-e2e.sh +++ b/scripts/ci-e2e.sh @@ -29,7 +29,7 @@ export PATH="${REPO_ROOT}/hack/tools/bin:${PATH}" # Override e2e conf values with CI specific environment variables MAKE_TARGET=${MAKE_TARGET} -LABEL_FILTERS=${LABEL_FILTERS} +LABEL_FILTERS="${LABEL_FILTERS}" KUBERNETES_VERSION_MANAGEMENT=${KUBERNETES_VERSION_MANAGEMENT} NUTANIX_ENDPOINT=${NUTANIX_ENDPOINT} NUTANIX_USER=${NUTANIX_USER} @@ -43,4 +43,5 @@ NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME=${NUTANIX_MACHINE_TEMPLATE_IMAGE_NAME} NUTANIX_SUBNET_NAME=${NUTANIX_SUBNET_NAME} # Run e2e tests -make ${MAKE_TARGET} LABEL_FILTERS=${LABEL_FILTERS} \ No newline at end of file +echo "Running make with TARGET: ${MAKE_TARGET} and LABEL_FILTERS: ${LABEL_FILTERS}" +make ${MAKE_TARGET} LABEL_FILTERS="${LABEL_FILTERS}"