Skip to content

Commit c10397e

Browse files
authored
Merge pull request #5358 from Jont828/remove-random-region
Remove `northeurope` from random region selection to be used for perf tests
2 parents 71a3924 + d75a99a commit c10397e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hack/util.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ capz::util::should_build_ccm() {
6363

6464
# all test regions must support AvailabilityZones
6565
capz::util::get_random_region() {
66-
local REGIONS=("australiaeast" "canadacentral" "francecentral" "germanywestcentral" "northeurope" "switzerlandnorth" "uksouth" )
66+
local REGIONS=("australiaeast" "canadacentral" "francecentral" "germanywestcentral" "switzerlandnorth" "uksouth" )
6767
echo "${REGIONS[${RANDOM} % ${#REGIONS[@]}]}"
6868
}
6969
# all regions below must have GPU availability for the chosen GPU VM SKU
7070
capz::util::get_random_region_gpu() {
71-
local REGIONS=("eastus" "eastus2" "northeurope" "uksouth" "westeurope" "westus2")
71+
local REGIONS=("eastus" "eastus2" "uksouth" "westeurope" "westus2")
7272
echo "${REGIONS[${RANDOM} % ${#REGIONS[@]}]}"
7373
}
7474
# all regions below must support ExtendedLocation

0 commit comments

Comments
 (0)