view master/bin/makeWorker.sh @ 62:892e1c0240e1

added more robust (I hope) error handling, got reducer working with support for choosing dict or tsv output
author Henry S. Thompson <ht@markup.co.uk>
date Tue, 02 Jun 2020 17:35:07 +0000
parents c49b169339b1
children
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 \")
setupTemplate.sh $ip
. bindWorkerVars.sh $name