Skip to content

Commit 51602fa

Browse files
Merge pull request #17576 from wking/drop-hard-coded-zone-overrides
ci-operator/step-registry/ipi/conf/aws: Drop us-east-1 zone overrides
2 parents da2c281 + 05c825a commit 51602fa

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

ci-operator/step-registry/ipi/conf/aws/ipi-conf-aws-commands.sh

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,7 @@ expiration_date=$(date -d '4 hours' --iso=minutes --utc)
1111
function join_by { local IFS="$1"; shift; echo "$*"; }
1212

1313
REGION="${LEASED_RESOURCE}"
14-
case "${REGION}" in
15-
us-east-1)
16-
ZONES=("us-east-1b" "us-east-1c")
17-
;;
18-
*)
19-
ZONES=("${REGION}a" "${REGION}b")
20-
esac
14+
ZONES=("${REGION}a" "${REGION}b")
2115

2216
ZONES_COUNT=${ZONES_COUNT:-2}
2317
ZONES=("${ZONES[@]:0:${ZONES_COUNT}}")

0 commit comments

Comments
 (0)