From f5cd2cb53d3de3e4dc8ae3c9bd2bb953618555be Mon Sep 17 00:00:00 2001 From: ehila Date: Sat, 1 Nov 2025 16:04:19 -0400 Subject: [PATCH] test: using advised minimums for agent based flow Signed-off-by: ehila --- common.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common.sh b/common.sh index 634247b9e..ba1c44b77 100644 --- a/common.sh +++ b/common.sh @@ -479,9 +479,9 @@ if [[ ! -z ${AGENT_E2E_TEST_SCENARIO} ]]; then ;; "COMPACT" ) export NUM_MASTERS=3 - export MASTER_VCPU=4 + export MASTER_VCPU=8 export MASTER_DISK=100 - export MASTER_MEMORY=32768 + export MASTER_MEMORY=16384 export NUM_WORKERS=0 ;; "TNA" ) @@ -505,9 +505,9 @@ if [[ ! -z ${AGENT_E2E_TEST_SCENARIO} ]]; then ;; "HA" ) export NUM_MASTERS=3 - export MASTER_VCPU=4 + export MASTER_VCPU=8 export MASTER_DISK=100 - export MASTER_MEMORY=32768 + export MASTER_MEMORY=16384 export NUM_WORKERS=2 export WORKER_VCPU=4 export WORKER_DISK=100