Shuffle AWS regions

This commit is contained in:
Michael Vines
2018-11-07 10:48:21 -08:00
parent a19426f055
commit 2e14bfcf4e

View File

@ -122,7 +122,7 @@ sanity() {
set -ex
export NO_LEDGER_VERIFY=1
export NO_VALIDATOR_SANITY=1
ci/testnet-sanity.sh edge-testnet-solana-com ec2 us-east-1b
ci/testnet-sanity.sh edge-testnet-solana-com ec2 us-west-1a
)
;;
testnet-edge-perf)
@ -133,7 +133,7 @@ sanity() {
export REJECT_EXTRA_NODES=1
export NO_LEDGER_VERIFY=1
export NO_VALIDATOR_SANITY=1
ci/testnet-sanity.sh edge-perf-testnet-solana-com ec2 us-east-1a
ci/testnet-sanity.sh edge-perf-testnet-solana-com ec2 us-west-2b
)
;;
testnet-beta)
@ -143,7 +143,7 @@ sanity() {
set -ex
export NO_LEDGER_VERIFY=1
export NO_VALIDATOR_SANITY=1
ci/testnet-sanity.sh beta-testnet-solana-com ec2 us-west-1a
ci/testnet-sanity.sh beta-testnet-solana-com ec2 us-west-1b
)
;;
testnet-beta-perf)
@ -186,6 +186,7 @@ sanity() {
export NO_LEDGER_VERIFY=1
export NO_VALIDATOR_SANITY=1
ci/testnet-sanity.sh testnet-solana-com gce us-east1-c
#ci/testnet-sanity.sh testnet-solana-com ec2 us-west-1a
)
;;
testnet-perf)
@ -196,6 +197,7 @@ sanity() {
export REJECT_EXTRA_NODES=1
export NO_LEDGER_VERIFY=1
export NO_VALIDATOR_SANITY=1
#ci/testnet-sanity.sh perf-testnet-solana-com ec2 us-east-1a
ci/testnet-sanity.sh perf-testnet-solana-com gce us-west1-b
)
;;
@ -223,7 +225,7 @@ start() {
set -ex
export NO_LEDGER_VERIFY=1
export NO_VALIDATOR_SANITY=1
ci/testnet-deploy.sh edge-testnet-solana-com ec2 us-east-1b \
ci/testnet-deploy.sh edge-testnet-solana-com ec2 us-west-1a \
-s "$CHANNEL_OR_TAG" -n 3 -c 0 -P \
${maybeDelete:+-d}
)
@ -235,7 +237,7 @@ start() {
set -ex
export NO_LEDGER_VERIFY=1
export NO_VALIDATOR_SANITY=1
ci/testnet-deploy.sh edge-perf-testnet-solana-com ec2 us-east-1a \
ci/testnet-deploy.sh edge-perf-testnet-solana-com ec2 us-west-2b \
-g -t "$CHANNEL_OR_TAG" -c 2 \
${maybeDelete:+-d}
)
@ -247,7 +249,7 @@ start() {
set -ex
export NO_LEDGER_VERIFY=1
export NO_VALIDATOR_SANITY=1
ci/testnet-deploy.sh beta-testnet-solana-com ec2 us-west-1a \
ci/testnet-deploy.sh beta-testnet-solana-com ec2 us-west-1b \
-t "$CHANNEL_OR_TAG" -n 3 -c 0 -P \
${maybeDelete:+-d}
)
@ -299,6 +301,9 @@ start() {
ci/testnet-deploy.sh testnet-solana-com gce us-east1-c \
-t "$CHANNEL_OR_TAG" -n 3 -g -c 0 -P -a testnet-solana-com \
${maybeDelete:+-d}
#ci/testnet-deploy.sh testnet-solana-com ec2 us-west-1a \
# -t "$CHANNEL_OR_TAG" -n 3 -g -c 0 -P -a eipalloc-0fa502bf95f6f18b2 \
# ${maybeDelete:+-d}
)
;;
testnet-perf)
@ -312,6 +317,10 @@ start() {
-G "n1-standard-16 --accelerator count=2,type=nvidia-tesla-v100" \
-t "$CHANNEL_OR_TAG" -c 2 \
${maybeDelete:+-d}
#ci/testnet-deploy.sh perf-testnet-solana-com ec2 us-east-1a \
# -g \
# -t "$CHANNEL_OR_TAG" -c 2 \
# ${maybeDelete:+-d}
)
;;
*)