Enable GPUs and secondary disks for TdS net, pull external account file (#5031)

* Enable V100 GPUs over 3 regions for TdS cluster

* Turn on secondary config-local drive for tds net

* Enable long args bypass for GPU machine details

* bypass quoted long arg

* Pull external account file from wget

* typo

* Symlink config-local instead of changing the path variables

* Fix link path
This commit is contained in:
Dan Albert
2019-07-12 09:38:47 -06:00
committed by GitHub
parent 9f58318fc5
commit 5ac173d208
4 changed files with 28 additions and 7 deletions

View File

@ -159,6 +159,9 @@ while [[ -n $1 ]]; do
elif [[ $1 = --fullnode-additional-disk-size-gb ]]; then
fullNodeAdditionalDiskSizeInGb="$2"
shift 2
elif [[ $1 == --machine-type* ]]; then # Bypass quoted long args for GPUs
shortArgs+=("$1")
shift
else
usage "Unknown long option: $1"
fi