Deploy software using Ansible ============================= * Install Ansible >= 2 * Add the nodes IPs to the `hosts` file * Run ansible with `make` Debug ----- * Install vagrant * Run vagrant vagrant up * With the current cloud image, you'll need to install python before successfully running ansible vagrant ssh 10.2.0.2 > sudo apt-get install python vagrant ssh 10.2.0.3 > sudo apt-get install python * Apply ansible receipt vagrant provision Prod ---- * Copy `hosts.examples` to `hosts` * Replace the ip addresses by yours, for instance ``` [compute] 10.2.0.3 10.2.0.4 [admin] 10.2.0.2 ``` * Make sure you can connect with SSH on those machines using the root account * Run `make all`