$ vagrant up --provision
$ vagrant ssh
$ docker-compose up -d
$ nano inventory
cs-v-node1 ansible_ssh_user=root ansible_ssh_pass=Passw0rd ansible_host=172.16.238.10
cs-v-node2 ansible_ssh_user=root ansible_ssh_pass=Passw0rd ansible_host=172.16.238.20
cs-v-node3 ansible_ssh_user=root ansible_ssh_pass=Passw0rd ansible_host=172.16.238.30
$ nano ansible.cfg
[defaults]
host_key_checking = False
$ ansible cs-v-node* -m ping -i inventory -vv
$ sudo nano /etc/ssh/sshd_config
PasswordAuthentication yes
$ sudo service ssh restart
TODO: