Mercurial > hg > cc > azure
annotate master/bin/makeWorker.sh @ 32:9342f6269edf
rewritten to be faster, maybe, and avoid earlier bug
author | Henry S. Thompson <ht@markup.co.uk> |
---|---|
date | Tue, 20 Nov 2018 10:31:05 +0000 |
parents | c1c8275bd194 |
children | c49b169339b1 |
rev | line source |
---|---|
5
580221a17890
comment out a lot not needed for vmss
Henry S. Thompson <ht@markup.co.uk>
parents:
4
diff
changeset
|
1 #!/bin/bash |
3 | 2 # Usage . makeWorker.sh name |
5
580221a17890
comment out a lot not needed for vmss
Henry S. Thompson <ht@markup.co.uk>
parents:
4
diff
changeset
|
3 # Misnamed -- it assumes you've already done |
580221a17890
comment out a lot not needed for vmss
Henry S. Thompson <ht@markup.co.uk>
parents:
4
diff
changeset
|
4 # az vm create -n [name] -g cc --image Debian --size Standard_... |
3 | 5 # Source this to get the worker name set to its IP address |
14 | 6 set -e -o pipefail |
3 | 7 name=$1 |
8 ip=$(az vm list-ip-addresses -g cc -n $name|egrep -o '"ipAddress": ".*"' | cut -f 2 -d ' ' | tr -d \") | |
9 export $name=$ip | |
10 echo $name=$ip | |
4 | 11 setupTemplate.sh $ip |