From 2f6eee78c11ff51838794bd55c3c866784f86fb0 Mon Sep 17 00:00:00 2001 From: Sachin Prabhu Date: Thu, 7 May 2020 12:41:23 +0100 Subject: Add new build targets to ansible/Makefile Add targets to build a) clients b) the entire the cluster and the clients Signed-off-by: Sachin Prabhu --- vagrant/ansible/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/vagrant/ansible/Makefile b/vagrant/ansible/Makefile index a8c80f3..6eaa741 100644 --- a/vagrant/ansible/Makefile +++ b/vagrant/ansible/Makefile @@ -7,4 +7,9 @@ setup.test: setup.cluster: @ansible-playbook -i $(INVENTORY) ./setup-cluster.yml -.PHONY: setup.cluster +setup.clients: + @ansible-playbook -i $(INVENTORY) ./setup-clients.yml + +setup.site: setup.cluster setup.clients + +.PHONY: setup.cluster setup.clients setup.site -- cgit