diff options
author | Tomas Alexy <tomas.alexy@pantheon.tech> | 2021-04-15 10:49:14 +0200 |
---|---|---|
committer | Tomas Alexy <tomas.alexy@pantheon.tech> | 2021-04-15 11:03:53 +0200 |
commit | 756a578af2217a94765e76b40e2ffb160c242ef3 (patch) | |
tree | 7c7c50c6c9ccd739275bc9a43cb4891a4c62abe3 /resources/libraries/bash | |
parent | 63340f532e63119515c2c3ffdab48a3a87346959 (diff) |
common.sh - fix 3n AWS topology tag selection
Signed-off-by: Tomas Alexy <tomas.alexy@pantheon.tech>
Change-Id: Ic6dd4a14887d572487d7d4efcca8a437cf140ca9
Diffstat (limited to 'resources/libraries/bash')
-rw-r--r-- | resources/libraries/bash/function/common.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/libraries/bash/function/common.sh b/resources/libraries/bash/function/common.sh index e511b17557..54a013eeb3 100644 --- a/resources/libraries/bash/function/common.sh +++ b/resources/libraries/bash/function/common.sh @@ -1060,11 +1060,11 @@ function select_topology () { ;; "2n_aws") TOPOLOGIES=( "${TOPOLOGIES_DIR}"/*2n_aws*.yaml ) - TOPOLOGIES_TAGS="2_node_*_link_topo" + TOPOLOGIES_TAGS="2_node_single_link_topo" ;; "3n_aws") TOPOLOGIES=( "${TOPOLOGIES_DIR}"/*3n_aws*.yaml ) - TOPOLOGIES_TAGS="2_node_*_link_topo" + TOPOLOGIES_TAGS="3_node_single_link_topo" ;; *) # No falling back to 3n_hsw default, that should have been done |