summaryrefslogtreecommitdiff
path: root/run-cluster.sh
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-04-04 13:52:12 +0300
committerLars Wirzenius <liw@liw.fi>2018-04-04 13:52:12 +0300
commit3e0c5f3e3eafb2b87aa8e22a0f64e1daa9c9df2b (patch)
tree9963f3f3c53be13c995e7e0d61c98969723239f7 /run-cluster.sh
parentf92d25352365d23378f1971c1f004c9de4b0ba88 (diff)
downloadick2-ansible-3e0c5f3e3eafb2b87aa8e22a0f64e1daa9c9df2b.tar.gz
Change: new hosts on Hetzner, fix buglets
Diffstat (limited to 'run-cluster.sh')
-rwxr-xr-xrun-cluster.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/run-cluster.sh b/run-cluster.sh
index b67df53..c204d5c 100755
--- a/run-cluster.sh
+++ b/run-cluster.sh
@@ -17,7 +17,7 @@ mkhosts()
cat <<EOF
[ick]
controller hostname=controller ansible_ssh_host=$(getip controller)
-blob_service hostname=blob_service ansible_ssh_host=$(getip blobs)
+artifacts hostname=blob_service ansible_ssh_host=$(getip artifacts)
worker1 hostname=worker1 ansible_ssh_host=$(getip worker1)
worker2 hostname=worker2 ansible_ssh_host=$(getip worker2)
@@ -30,5 +30,5 @@ EOF
mkhosts > hosts.tmp
ansible-playbook -i hosts.tmp ick-cluster.yml \
-e "controller_domain=$(getip controller)" \
- -e "blob_service_domain=$(getip blobs)" \
+ -e "artifact_store_domain=$(getip artifacts)" \
"$@"