From: Tim Rozet Date: Thu, 16 Aug 2018 15:01:41 +0000 (-0400) Subject: CPERF: CSIT hardcode OPENSTACK_TOPO X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=3aa4ff2ae4db3bbfdd139927c0cf0d09a5fdca6a;hp=78bfef0da4d7bf632b630b1815725efef14f94f7;p=releng.git CPERF: CSIT hardcode OPENSTACK_TOPO CSIT has static topologies that it supports, so even if we have more nodes we need to conform to the CSIT input. Change-Id: Id8647afaccbbf145dbf938b097ac49b92ce876f8 Signed-off-by: Tim Rozet --- diff --git a/jjb/cperf/cperf-robot-netvirt-csit.sh b/jjb/cperf/cperf-robot-netvirt-csit.sh index 0895ab624..d3a8cd99a 100755 --- a/jjb/cperf/cperf-robot-netvirt-csit.sh +++ b/jjb/cperf/cperf-robot-netvirt-csit.sh @@ -33,10 +33,15 @@ NUM_COMPUTE_NODES=$(python ${REL_PATH}/parse-node-yaml.py num_nodes --node-type echo "Number of Control nodes found: ${NUM_CONTROL_NODES}" echo "Number of Compute nodes found: ${NUM_COMPUTE_NODES}" +# Only 1 combo or ctrl node is specified, even for OS HA deployments +# Currently supported combinations are: +# 0cmb-1ctl-2cmp +# 1cmb-0ctl-0cmp +# 1cmb-0ctl-1cmp if [ "$NUM_COMPUTE_NODES" -eq 0 ]; then - OPENSTACK_TOPO="${NUM_CONTROL_NODES}cmb-0ctl-0cmp" + OPENSTACK_TOPO="1cmb-0ctl-0cmp" else - OPENSTACK_TOPO="0cmb-${NUM_CONTROL_NODES}ctl-${NUM_COMPUTE_NODES}cmp" + OPENSTACK_TOPO="0cmb-1ctl-2cmp" fi idx=1