Upgrade GCP CPU-based testnet to 18.04

This commit is contained in:
Michael Vines
2018-11-04 19:06:14 -08:00
parent ed09b2bdb8
commit eae9372a5d
2 changed files with 17 additions and 3 deletions

View File

@ -128,6 +128,9 @@ cloud_CreateInstances() {
--no-restart-on-failure
)
# shellcheck disable=SC2206 # Do not want to quote $imageName as it may contain extra args
args+=(--image $imageName)
# shellcheck disable=SC2206 # Do not want to quote $machineType as it may contain extra args
args+=(--machine-type $machineType)
if [[ -n $optionalBootDiskSize ]]; then