view master/bin/makeWorker.sh @ 39:bb09db2afe6b

try to fix a few more niggling bugs
author Henry S. Thompson <ht@markup.co.uk>
date Thu, 29 Nov 2018 15:14:46 +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