Mercurial > hg > cc > azure
view master/bin/makeWorker.sh @ 35:1b6bcc54268d
what it says on the tin
author | Henry S. Thompson <ht@markup.co.uk> |
---|---|
date | Tue, 27 Nov 2018 19:08:08 +0000 |
parents | c1c8275bd194 |
children | c49b169339b1 |
line wrap: on
line source
#!/bin/bash # Usage . makeWorker.sh name # Misnamed -- it assumes you've already done # az vm create -n [name] -g cc --image Debian --size Standard_... # Source this to get the worker name set to its IP address set -e -o pipefail name=$1 ip=$(az vm list-ip-addresses -g cc -n $name|egrep -o '"ipAddress": ".*"' | cut -f 2 -d ' ' | tr -d \") export $name=$ip echo $name=$ip setupTemplate.sh $ip