From 32e2217c1ba314945d69d4983addc80f44364656 Mon Sep 17 00:00:00 2001 From: Francisco Herrera Date: Thu, 7 May 2026 18:32:02 +0200 Subject: [PATCH] Set DEPLOYMENT_NAME to csv name when OLM is true This will avoid issues on the test while waiting for operator because will set DEPLOYMENT_NAME to the csv name used into fork test Signed-off-by: Francisco Herrera --- tests/e2e/common-operator-integ-suite.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/e2e/common-operator-integ-suite.sh b/tests/e2e/common-operator-integ-suite.sh index 3dd858791..e8033750f 100755 --- a/tests/e2e/common-operator-integ-suite.sh +++ b/tests/e2e/common-operator-integ-suite.sh @@ -235,6 +235,7 @@ await_operator() { if [ -n "${csv_name}" ]; then echo "OLM mode: using deployment name from bundle CSV: ${csv_name}" name="${csv_name}" + DEPLOYMENT_NAME="${csv_name}" fi fi "${COMMAND}" wait --for=condition=available deployment/"${name}" -n "${NAMESPACE}" --timeout=5m