From 5db8010efa7eabfe1bf747f7f1379dd4d826fbf1 Mon Sep 17 00:00:00 2001 From: Francesco Cappa Date: Wed, 18 Mar 2026 19:13:24 +0100 Subject: [PATCH 1/2] feat: changing NUM_WORKERS env var in TNA to be customizable This way TNA clusters with day-0 workers could be installed using dev-scripts --- common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.sh b/common.sh index 6d5013b1f..4bfc21992 100644 --- a/common.sh +++ b/common.sh @@ -480,7 +480,7 @@ if [[ ! -z ${AGENT_E2E_TEST_SCENARIO} ]]; then export ARBITER_VCPU=${ARBITER_VCPU:-2} export ARBITER_MEMORY=${ARBITER_MEMORY:-8192} export ARBITER_DISK=${ARBITER_DISK:-50} - export NUM_WORKERS=0 + export NUM_WORKERS=${NUM_WORKERS:-0} ;; "TNF" ) export NUM_MASTERS=2 From 7b4f2ea231b49cd1cfd6ab9ea8818f7eeba97264 Mon Sep 17 00:00:00 2001 From: fracappa Date: Fri, 3 Apr 2026 10:32:33 +0200 Subject: [PATCH 2/2] feat: changing NUM_WORKERS env vars in TNF to be customizable --- common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.sh b/common.sh index 4bfc21992..2f8c3a4b9 100644 --- a/common.sh +++ b/common.sh @@ -487,7 +487,7 @@ if [[ ! -z ${AGENT_E2E_TEST_SCENARIO} ]]; then export MASTER_VCPU=${MASTER_VCPU:-8} export MASTER_DISK=${MASTER_DISK:-100} export MASTER_MEMORY=${MASTER_MEMORY:-32768} - export NUM_WORKERS=0 + export NUM_WORKERS=${NUM_WORKERS:-0} export ENABLE_TWO_NODE_FENCING="true" ;; "HA" )