Ansible playbook
Ansible is a configuration management and provisioning tool, similar to Chef, Puppet or Salt.
I've found it to be one of the simplest and the easiest to get started with. A lot of this is because it's "just SSH"; It uses SSH to connect to servers and run the configured Tasks.
One nice thing about Ansible is that it's very easy to convert bash scripts (still a popular way to accomplish configuration management) into Ansible Tasks. Since it's primarily SSH based, it's not hard to see why this might be the case - Ansible ends up running the same commands.
We could just script our own provisioners, but Ansible is much cleaner because it automates the process of getting contextbefore running Tasks. With this context, Ansible is able to handle most edge cases - the kind we usually take care of with longer and increasingly complex scripts.
Ansible Tasks are idempotent. Without a lot of extra coding, bash scripts are usually not safety run again and again. Ansible uses "Facts", which is system and environment information it gathers ("context") before running Tasks.
Ansible uses these facts to check state and see if it needs to change anything in order to get the desired outcome. This makes it safe to run Ansible Tasks against a server over and over again.
Here I'll show how easy it is to get started with Anible. We'll start basic and then add in more features as we improve upon our configurations.
Install
Of course we need to start by installing Ansible. Tasks can be run off of any machine Ansible is installed on.
This means there's usually a "central" server running Ansible commands, although there's nothing particularly special about what server Ansible is installed on. Ansible is "agentless" - there's no central agent(s) running. We can even run Ansible from any server; I often run Tasks from my laptop.
Here's how to install Ansible on Ubuntu 14.04. We'll use the easy-to-remember
ppa:ansible/ansible
repository as per the official docs.sudo apt-add-repository -y ppa:ansible/ansible
sudo apt-get update
sudo apt-get install -y ansible
Managing Servers
Ansible has a default inventory file used to define which servers it will be managing. After installation, there's an example one you can reference at
/etc/ansible/hosts
.
I usually copy and move the default one so I can reference it later:
sudo mv /etc/ansible/hosts /etc/ansible/hosts.orig
Then I create my own inventory file from scratch. After moving the example inventory file, create a new
/etc/ansible/hosts
file, and define some servers to manage. Here's we'll define two servers under the "web" label:[web]
192.168.22.10
192.168.22.11
That's good enough for now. If needed, we can define ranges of hosts, multiple groups, reusable variables, and use other fancy setups, including creating a dynamic inventory.
For testing this article, I created a virtual machine, installed Ansible, and then ran Ansible Tasks directly on that server. To do this, my
hosts
inventory file simply looked like this:[local]
127.0.0.1
This makes testing pretty easy - I don't need to setup multiple servers or virtual machines. A consequence of this is that I need to tell Ansible to run Tasks as user "vagrant" and use password-based (rather than key-based) authentication.
Basic: Running Commands
Once we have an inventory configured, we can start running Tasks against the defined servers.
Ansible will assume you have SSH access available to your servers, usually based on SSH-Key. Because Ansible uses SSH, the server it's on needs to be able to SSH into the inventory servers. It will attempt to connect as the current user it is being run as. If I'm running Ansible as user
vagrant
, it will attempt to connect as user vagrant
on the other servers.
If Ansible can directly SSH into the managed servers, we can run commands without too much fuss:
$ ansible all -m ping
127.0.0.1 | success >> {
"changed": false,
"ping": "pong"
}
We can see the output we get from Ansible is some JSON which tells us if the Task made any changes and the result.
If we need to define the user and perhaps some other settings in order to connect to our server, we can. When testing locally on Vagrant, I use the following:
ansible all -m ping -s -k -u vagrant
Let's cover these commands:
all
- Use all defined servers from the inventory file-m ping
- Use the "ping" module, which simply runs theping
command and returns the results-s
- Use "sudo" to run the commands-k
- Ask for a password rather than use key-based authentication-u vagrant
- Log into servers using uservagrant
Modules
Ansible uses "modules" to accomplish most of its Tasks. Modules can do things like install software, copy files, use templates and much more.
Modules are the way to use Ansible, as they can use available context ("Facts") in order to determine what actions, if any need to be done to accomplish a Task.
If we didn't have modules, we'd be left running arbitrary shell commands like this:
ansible all -s -m shell -a 'apt-get install nginx'
Here, the
sudo apt-get install nginx
command will be run using the "shell" module. The -a
flag is used to pass any arguments to the module. I use -s
to run this command using sudo
.
However this isn't particularly powerful. While it's handy to be able to run these commands on all of our servers at once, we still only accomplish what any bash script might do.
If we used a more appropriate module instead, we can run commands with an assurance of the result. Ansible modules ensure indempotence - we can run the same Tasks over and over without affecting the final result.
For installing software on Debian/Ubuntu servers, the "apt" module will run the same command, but ensure idempotence.
ansible all -s -m apt -a 'pkg=nginx state=installed update_cache=true'
127.0.0.1 | success >> {
"changed": false
}
This will use the apt module to update the repository cache and install Nginx (if not installed).
The result of running the Task was
"changed": false
. This shows that there were no changes; I had already installed Nginx. I can run this command over and over without worrying about it affecting the desired result.
Going over the command:
all
- Run on all defined hosts from the inventory file-s
- Run using sudo-m apt
- Use the apt module-a 'pkg=nginx state=installed update_cache=true'
- Provide the arguments for the apt module, including the package name, our desired end state and whether to update the package repository cache or not
We can run all of our needed Tasks (via modules) in this ad-hoc way, but let's make this more managable. We'll move this Task into a Playbook, which can run and coordinate multiple Tasks.
Basic Playbook
Playbooks can run multiple Tasks and provide some more advanced functionality that we would miss out on using ad-hoc commands. Let's move the above Task into a playbook.
Playbooks and Roles in Ansible all use Yaml.
Create file
nginx.yml
:---
- hosts: local
tasks:
- name: Install Nginx
apt: pkg=nginx state=installed update_cache=true
This Task does exactly the same as our ad-hoc command, however I chose to specify my "local" group of servers rather than "all". We can run it with the
ansible-playbook
command:$ ansible-playbook -s nginx.yml
PLAY [local] ******************************************************************
GATHERING FACTS ***************************************************************
ok: [127.0.0.1]
TASK: [Install Nginx] *********************************************************
ok: [127.0.0.1]
PLAY RECAP ********************************************************************
127.0.0.1 : ok=2 changed=0 unreachable=0 failed=0
Use use
-s
to tell Ansible to use sudo
again, and then pass the Playbook file.
We get some useful feedback while this runs, including the Tasks Ansible runs and their result. Here we see all ran OK, but nothing was changed. I have Nginx installed already.
I used the command$ ansible-playbook -s -k -u vagrant nginx.yml
to run this playbook locally on my Vagrant installation.
Handlers
A Handler is exactly the same as a Task (it can do anything a Task can), but it will run when called by another Task. You can think of it as part of an Event system; A Handler will take an action when called by an event it listens for.
This is useful for "secondary" actions that might be required after running a Task, such as starting a new service after installation or reloading a service after a configuration change.
---
- hosts: local
tasks:
- name: Install Nginx
apt: pkg=nginx state=installed update_cache=true
notify:
- Start Nginx
handlers:
- name: Start Nginx
service: name=nginx state=started
We can add a
notify
directive to the installation Task. This notifies any Handler named "Start Nginx" after the Task is run.
Then we can create the Handler called "Start Nginx". This Handler is the Task called when "Start Nginx" is notified.
This particular Handler uses the Service module, which can start, stop, restart, reload (and so on) system services. Here we simply tell Ansible that we want Nginx to be started.
Note that Ansible has us define the state you wish the service to be in, rather than defining the change you want. Ansible will decide if a change is needed, we just tell it the desired result.
Let's run this Playbook again:
$ ansible-playbook -s nginx.yml
PLAY [local] ******************************************************************
GATHERING FACTS ***************************************************************
ok: [127.0.0.1]
TASK: [Install Nginx] *********************************************************
ok: [127.0.0.1]
NOTIFIED: [nginx | Start Nginx] ***********************************************
ok: [127.0.0.1]
PLAY RECAP ********************************************************************
127.0.0.1 : ok=2 changed=0 unreachable=0 failed=0
We get the similar output, but this time the Handler was run.
Notifiers are only run if the Task is run. If I already had Nginx installed, the Install Nginx Task would not be run and the notifier would not be called.
We can use Playbooks to run multiple Tasks, add in variables, define other settings and even include other playbooks.
More Tasks
Next we can add a few more Tasks to this Playbook and explore some other functionality.
---
- hosts: local
vars:
- docroot: /var/www/serversforhackers.com/public
tasks:
- name: Add Nginx Repository
apt_repository: repo='ppa:nginx/stable' state=present
register: ppastable
- name: Install Nginx
apt: pkg=nginx state=installed update_cache=true
when: ppastable|success
register: nginxinstalled
notify:
- Start Nginx
- name: Create Web Root
when: nginxinstalled|success
file: dest={{ '{{' }} docroot {{ '}}' }} mode=775 state=directory owner=www-data group=www-data
notify:
- Reload Nginx
handlers:
- name: Start Nginx
service: name=nginx state=started
- name: Reload Nginx
service: name=nginx state=reloaded
There are now three Tasks:
Add Nginx Repository
- Add the Nginx stable PPA to get the latest stable version of Nginx, using the apt_repository module.Install Nginx
- Installs Nginx using the Apt module.Create Web Root
- Finally, create a web root directory.
Also new here are the
register
and when
directives. These tell Ansible to run a Task when something else happens.
The "Add Nginx Repository" Task registers "ppastable". Then we use that to inform the Install Nginx Task to only run when the registered "ppastable" Task is successful. This allows us to conditionally stop Ansible from running a Task.
We also use a variable. The
docroot
variable is defined in the var
section. It's then used as the destination argument of the file module which creates the defined directory.
This playbook can be run with the usual command:
ansible-playbook -s nginx.yml
# Or, as I ran on my Vagrant machine:
ansible-playbook -s -k -u vagrant nginx.yml
Next we'll take Ansible further and by organizing the Playbook into a Role while also showing some more functionality.
Roles
Roles are good for organizing multiple, related Tasks and encapsulating data needed to accomplish those Tasks. For example, installing Nginx may involve adding a package repository, installing the package and setting up configuration. We've seen installation in action in a Playbook, but once we start configuring our installations, the Playbooks tend to get a little more busy.
The configuration portion often requires extra data such as variables, files, dynamic templates and more. These tools can be used with Playbooks, but we can do better immediately by organizing related Tasks and data into one coherent structure: a Role.
Roles have a directory structure like this:
rolename
- files
- handlers
- meta
- templates
- tasks
- vars
Within each directory, Ansible will search for and read any Yaml file called
main.yml
automatically.
We'll break apart our
nginx.yml
file and put each component within the corresponding directory to create a cleaner and more complete provisioning toolset.Files
First, within the
files
directory, we can add files that we'll want copied into our servers. For Nginx, I often copy H5BP's Nginx component configurations. I simply download the latest from Github, make any tweaks I want, and put them into the files
directory.nginx
- files
- - h5bp
As we'll see, these configurations will be added via the copy module.
Handlers
Inside of the
handlers
directory, we can put all of our Handlers that were once within the nginx.yml
Playbook.
Inside of
handlers/main.yml
:---
- name: Start Nginx
service: name=nginx state=started
- name: Reload Nginx
service: name=nginx state=reloaded
Once these are in place, we can reference them from other files freely.
Meta
The
main.yml
file within the meta
directory contains Role meta data, including dependencies.
If this Role depended on another Role, we could define that here. For example, I have the Nginx Role depend on the SSL Role, which installs SSL certificates.
---
dependencies:
- { role: ssl }
If I called the "nginx" Role, it would attempt to first run the "ssl" Role.
Otherwise we can omit this file, or define the Role as having no dependencies:
---
dependencies: []
Template
Template files can contain template variables, based on Python's Jinja2 template engine. Files in here should end in
.j2
, but can otherwise have any name. Similar to files
, we won't find a main.yml
file within the templates
directory.
Here's an example Nginx virtual host configuration. Note that it uses some variables which we'll define later in the
vars/main.yml
file.
Nginx virtual host file found at
templates/serversforhackers.com.conf
:server {
# Enforce the use of HTTPS
listen 80 default_server;
server_name *.{{ '{{' }} domain {{ '}}' }};
return 301 https://{{ '{{' }} domain {{ '}}' }}$request_uri;
}
server {
listen 443 default_server ssl;
root /var/www/{{ '{{' }} domain {{ '}}' }}/public;
index index.html index.htm index.php;
access_log /var/log/nginx/{{ '{{' }} domain {{ '}}' }}.log;
error_log /var/log/nginx/{{ '{{' }} domain {{ '}}' }}-error.log error;
server_name {{ '{{' }} domain {{ '}}' }};
charset utf-8;
include h5bp/basic.conf;
ssl_certificate {{ '{{' }} ssl_crt {{ '}}' }};
ssl_certificate_key {{ '{{' }} ssl_key {{ '}}' }};
include h5bp/directive-only/ssl.conf;
location /book {
return 301 http://book.{{ '{{' }} domain {{ '}}' }};
}
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location = /favicon.ico { log_not_found off; access_log off; }
location = /robots.txt { log_not_found off; access_log off; }
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params; # fastcgi.conf for version 1.6.1+
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param ENV production;
}
# Nginx status
# Nginx Plus only
#location /status {
# status;
# status_format json;
# allow 127.0.0.1;
# deny all;
#}
location ~ ^/(fpmstatus|fpmping)$ {
access_log off;
allow 127.0.0.1;
deny all;
include fastcgi_params; # fastcgi.conf for version 1.6.1+
fastcgi_pass unix:/var/run/php5-fpm.sock;
}
}
This is a fairly standard Nginx configuration for a PHP application. There are three variables used here:
- domain
- ssl_crt
- ssl_key
These three will be defined in the variables section.
Variables
Before we look at the Tasks, let's look at variables. The
vars
directory contains a main.yml
file which simply lists variables we'll use. This provides a convenient place for us to change configuration-wide settings.
Here's what the
vars/main.yml
file might look like:---
domain: serversforhackers.com
ssl_key: /etc/ssl/sfh/sfh.key
ssl_crt: /etc/ssl/sfh/sfh.crt
These are three variables which we can use elsewhere in this Role. We saw them used in the template above, but we'll see them in our defined Tasks as well.
Tasks
Let's finally see this all put together into a series of Tasks.
Inside of
tasks/main.yml
:---
- name: Add Nginx Repository
apt_repository: repo='ppa:nginx/stable' state=present
register: ppastable
- name: Install Nginx
apt: pkg=nginx state=installed update_cache=true
when: ppastable|success
register: nginxinstalled
notify:
- Start Nginx
- name: Add H5BP Config
when: nginxinstalled|success
copy: src=h5bp dest=/etc/nginx owner=root group=root
- name: Disable Default Site
when: nginxinstalled|success
file: dest=/etc/nginx/sites-enabled/default state=absent
- name: Add SFH Site Config
when: nginxinstalled|success
register: sfhconfig
template: src=serversforhackers.com.j2 dest=/etc/nginx/sites-available/{{ '{{' }} domain {{ '}}' }}.conf owner=root group=root
- name: Enable SFH Site Config
when: sfhconfig|success
file: src=/etc/nginx/sites-available/{{ '{{' }} domain {{ '}}' }}.conf dest=/etc/nginx/sites-enabled/{{ '{{' }} domain {{ '}}' }}.conf state=link
- name: Create Web root
when: nginxinstalled|success
file: dest=/var/www/{{ '{{' }} domain {{ '}}' }}/public mode=775 state=directory owner=www-data group=www-data
notify:
- Reload Nginx
- name: Web Root Permissions
when: nginxinstalled|success
file: dest=/var/www/{{ '{{' }} domain {{ '}}' }} mode=775 state=directory owner=www-data group=www-data recurse=yes
notify:
- Reload Nginx
This is a longer series of Tasks, which makes for a more complete installation of Nginx. The Tasks, in order of appearance, accomplish the following:
- Add the nginx/stable repository
- Install & start Nginx, register successful installation to trigger remaining Tasks
- Add H5BP configuration
- Disable the default virtual host by removing the symlink to the
default
file from thesites-enabled
directory - Copy the
serversforhackers.com.conf.j2
virtual host template into the Nginx configuration - Enable the virtual host configuration by symlinking it to the
sites-enabled
directory - Create the web root
- Change permission for the project root directory, which is one level above the web root created previously
There's some new modules (and new uses of some we've covered), including copy, template, & file. By setting the arguments for each module, we can do some interesting things such as ensuring files are "absent" (delete them if they exist) via
state=absent
, or create a file as a symlink via state=link
. You should check the docs for each module to see what interesting and useful things you can accomplish with them.Running the Role
Before running the Role, we need to tell Ansible where our Roles are located. In my Vagrant server, they are located within
/vagrant/ansible/roles
. We can add this file path to the /etc/ansible/ansible.cfg
file:roles_path = /vagrant/ansible/roles
Assuming our
nginx
Role is located at /vagrant/ansible/roles/nginx
, we'll be all set to run this Role!Remove thessl
dependency frommeta/main.yml
before running this Role if you are following along.
Let's create a "master" yaml file which defines the Roles to use and what hosts to run them on:
File
server.yml
:---
- hosts: all
roles:
- nginx
In my Vagrant example, I use the host "local" rather than "all".
Then we can run the Role(s):
ansible-playbook -s server.yml
# Or as I do with my Vagrant VM:
ansible-playbook -s -k -u vagrant server.yml
Here's the output from the run of the Nginx Role:
PLAY [all] ********************************************************************
GATHERING FACTS ***************************************************************
ok: [127.0.0.1]
TASK: [nginx | Add Nginx Repository] ******************************************
changed: [127.0.0.1]
TASK: [nginx | Install Nginx] *************************************************
changed: [127.0.0.1]
TASK: [nginx | Add H5BP Config] ***********************************************
changed: [127.0.0.1]
TASK: [nginx | Disable Default Site] ******************************************
changed: [127.0.0.1]
TASK: [nginx | Add SFH Site Config] *******************************************
changed: [127.0.0.1]
TASK: [nginx | Enable SFH Site Config] ****************************************
changed: [127.0.0.1]
TASK: [nginx | Create Web root] ***********************************************
changed: [127.0.0.1]
TASK: [nginx | Web Root Permissions] ******************************************
ok: [127.0.0.1]
NOTIFIED: [nginx | Start Nginx] ***********************************************
ok: [127.0.0.1]
NOTIFIED: [nginx | Reload Nginx] **********************************************
changed: [127.0.0.1]
PLAY RECAP ********************************************************************
127.0.0.1 : ok=8 changed=7 unreachable=0 failed=0
Awesome, we put all the various components together into a coherent Role and now have Nginx installed and configured!
Subscribe to:
Post Comments
(
Atom
)
No comments :
Post a Comment