From 3b309be191e6baa66fc31de92e4e945931b18bbb Mon Sep 17 00:00:00 2001 From: Jont828 Date: Tue, 7 Jan 2025 18:10:23 -0500 Subject: [PATCH] Remove northeurope from random region selection to be used for perf tests --- hack/util.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/util.sh b/hack/util.sh index 32c219129e7..7862aa085c6 100755 --- a/hack/util.sh +++ b/hack/util.sh @@ -63,12 +63,12 @@ capz::util::should_build_ccm() { # all test regions must support AvailabilityZones capz::util::get_random_region() { - local REGIONS=("australiaeast" "canadacentral" "francecentral" "germanywestcentral" "northeurope" "switzerlandnorth" "uksouth" ) + local REGIONS=("australiaeast" "canadacentral" "francecentral" "germanywestcentral" "switzerlandnorth" "uksouth" ) echo "${REGIONS[${RANDOM} % ${#REGIONS[@]}]}" } # all regions below must have GPU availability for the chosen GPU VM SKU capz::util::get_random_region_gpu() { - local REGIONS=("eastus" "eastus2" "northeurope" "uksouth" "westeurope" "westus2") + local REGIONS=("eastus" "eastus2" "uksouth" "westeurope" "westus2") echo "${REGIONS[${RANDOM} % ${#REGIONS[@]}]}" } # all regions below must support ExtendedLocation