Bump EC2 validator machine type

This commit is contained in:
Michael Vines 2018-11-05 08:30:10 -08:00
parent 2ce72a1683
commit 8041461a07
No known key found for this signature in database
GPG Key ID: 33F4FDEC4E0E88BD
2 changed files with 3 additions and 2 deletions

View File

@ -36,7 +36,7 @@ ec2)
cpuLeaderMachineType=m4.4xlarge
gpuLeaderMachineType=p2.xlarge
leaderMachineType=$cpuLeaderMachineType
validatorMachineType=m4.xlarge
validatorMachineType=m4.4xlarge
clientMachineType=m4.4xlarge
;;
*)

View File

@ -213,10 +213,11 @@ sanity() {
echo "--- Sanity"
$metricsWriteDatapoint "testnet-deploy net-sanity-begin=1"
declare host=$leaderIp # TODO: maybe use ${validatorIpList[0]} ?
(
set -x
# shellcheck disable=SC2029 # remote-client.sh args are expanded on client side intentionally
ssh "${sshOptions[@]}" "$leaderIp" \
ssh "${sshOptions[@]}" "$host" \
"./solana/net/remote/remote-sanity.sh $sanityExtraArgs"
) || ok=false