From e7aa6cd5ea7c23fe2bc299802d6e3747b277b657 Mon Sep 17 00:00:00 2001 From: carllin Date: Wed, 10 Feb 2021 04:17:04 -0800 Subject: [PATCH] custom vm type (#15202) (cherry picked from commit 8c49985b5ca6d66778b7d4dc97341ca4ddbbb15c) --- net/gce.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/gce.sh b/net/gce.sh index 18bc103e09..eb14087892 100755 --- a/net/gce.sh +++ b/net/gce.sh @@ -12,7 +12,8 @@ gce) # shellcheck source=net/scripts/gce-provider.sh source "$here"/scripts/gce-provider.sh - cpuBootstrapLeaderMachineType="--custom-cpu 24 --min-cpu-platform Intel%20Skylake" + # use n1 instead of n2 so we don't need to spin up >= 4 local SSD's + cpuBootstrapLeaderMachineType="--custom-cpu 24 --min-cpu-platform Intel%20Skylake --custom-vm-type n1" gpuBootstrapLeaderMachineType="$cpuBootstrapLeaderMachineType --accelerator count=1,type=nvidia-tesla-p100" clientMachineType="--custom-cpu 16 --custom-memory 20GB" blockstreamerMachineType="--machine-type n1-standard-8"