Bump EC2 validator machine type

This commit is contained in:
Michael Vines
2018-11-05 08:30:10 -08:00
parent 85f74cc537
commit 6c2843543b
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

@ -215,10 +215,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