This project is a created for study purposes.
The objective is to understand Ansible and see it in action, without using any cloud support, but instead, plain Docker containers as target machines.
This project is built using Docker compose, which allows us to start the whole system, as we would have running against some cloud environment, like Amazon.
Compose contains two services:
-
ansible: the container with Ansible installed and ready to use. This container will play the role as our main machine, in which the Ansible commands will be dispatched.
-
server: a plain container, with SSHD installed and configured. This container will play the role as our cloud machines.
The Ansible container has mapped some extra files, present on this repository:
-
/ssh/config: this file contains some specific client SSH configuration, necessary in order to the Ansible container to connect to the server containers
-
/playbooks: directory containing our custom Ansible playbooks, responsible to configure the server machines
-
/ansible/hosts: contains the hosts that will be reached by
ansible-playbook
. Today, it's hardcoded to 3 machines, using the container names generated by Docker compose (information about how to start all the three instances can be found on theRunning
section).
First, we start the system with the Ansible container + 1 server instance:
$ docker-compose run ansible bash
This command will build the server image based on the Dockerfile
contained on this repository. This image basically generates a clean container with SSHD installed and configured to receive connections. After the image is created, both containers are started and a console to Ansible container is open.
Now, we need to start the other 2 server machines. So, in a different terminal, run:
$ docker-compose scale server=3
You can check now, using docker ps
, that we've four containers running: 1 Ansible container + 3 server containers, named:
- ansibledocker_server_1
- ansibledocker_server_2
- ansibledocker_server_3
Back to the Ansible terminal, you can test that all server containers are reachable running:
$ ansible all -m ping
Before running the Ansible playbook, we need to download some extra roles, used in our playbook:
-
ANXS.git: used to install the Git client on the server. Git will be used to download the NodeJS test project from Github.
-
geerlingguy.git: Ansible Git interface, used to download the project from Github and store inside the container
-
geerlingguy.nodejs: install and setup NodeJS on the server
So, to download the roles:
$ ansible-galaxy install ANXS.git geerlingguy.git geerlingguy.nodejs
Now, we can play the Ansible playbook:
$ ansible-playbook /root/playbooks/setup.yml
This process can take some time, since Ansible will install all the necessary dependencies and configure the services. You can follow the Ansible logs to check the magic being done.
After the servers configured, you can now check that all the 3 servers are configured and with our hello world project running.
So:
$ curl -XGET ansibledocker_server_1:5000
$ curl -XGET ansibledocker_server_2:5000
$ curl -XGET ansibledocker_server_3:5000
All the three requests above should return a Hello World
message, meaning that the Node server is up and running.
You now have fully setup 3 Docker containers using Ansible and running your project. :)
-
The objective of this project is not teach how to provision Docker containers using Ansible. As stated by Michael DeHaan, creator of Ansible, Docker containers typically have a single responsibility and, thus, much less configuration. So, the overhead of having a complete Ansible configuration to provision them are unnecessary.
-
This project uses Docker for convenience. This way, we don't have to bother about starting Amazon servers only for testing purposes. However, since the containers used here behave exactly like a plain machine with SSHD installed, the very same setup should work on any cloud or bare-metal architecture.
-
AFTER INSTALLATION, you may edit the ansible instance hosts file to add these inctances :
So:
ansible-docker_server_1 172.19.0.2
ansible-docker_server_2 172.19.0.3
ansible-docker_server_3 172.19.0.4