blob: 695c5300a5625d2ff4e170cd29ab58503f6da667 [file] [log] [blame]
Scott Bakerf93a06c2016-07-11 17:04:49 -07001CONFIG_DIR=$(shell pwd)
2
3everything: /usr/bin/ansible
4 ansible-playbook -i inventory/local --connection=local -e "config_dir=$(CONFIG_DIR)" cord-pod-playbook.yaml
5
6/usr/bin/ansible:
7 sudo apt-get update
8 sudo apt-get -y install software-properties-common curl git mosh tmux dnsutils python-netaddr
9 sudo add-apt-repository -y ppa:ansible/ansible
10 sudo apt-get update
11 sudo apt-get install -y ansible
12
13stop:
14 ansible-playbook -i inventory/local --connection=local -e "config_dir=$(CONFIG_DIR)" cord-pod-stop-playbook.yaml
15
16rm: stop
17 ansible-playbook -i inventory/local --connection=local -e "config_dir=$(CONFIG_DIR)" cord-pod-rm-playbook.yaml
18
19local_containers:
20 ansible-playbook -i inventory/local --connection=local -e "config_dir=$(CONFIG_DIR)" local-containers-playbook.yaml
Scott Baker79d93292016-07-18 17:23:53 -070021
22cord-monitoringservice:
23 ansible-playbook -i inventory/local --connection=local -e "config_dir=$(CONFIG_DIR)" monitoring-playbook.yaml
24
25exampleservice:
26 ansible-playbook -i inventory/local --connection=local -e "config_dir=$(CONFIG_DIR)" exampleservice-playbook.yaml