Ansible Playbooks are the way of sending commands to remote systems through scripts. Ansible playbooks are used to configure complex system environments to increase flexibility by executing a script to one or more systems.
An Ansible Playbook can be as simple as running a series of commands on different server in sequence and restarting those servers in a particular order, or it could be as complex as deploying hundreds of VMs in a public and private cloud infrastructure!
---
- name: Simple Playbook
hosts: webservers
tasks:
- name: ensure apache is at the latest version
yum:
name: httpd
state: latest
Ansible playbooks tend to be more of a configuration language than a programming language. Ansible playbook commands use YAML format.
Playbook -A single YAML file
Play - Defines a set of activities (tasks) to be run on hosts
Task - An action to be performed on the host. examples:
Execute a command
Run a script
Install a package
Shutdown/Restart
Sample Ansible Playbooks
Here we have a simple ansible Playbook, which helps you to get the idea:
---
#Sample Ansible Playbook1.yml
-
name: Play1
hosts: centos
tasks:
- name : Execute command 'date'
command: date
- name : Execute script on server
script: my_script.sh
- name : Install httpd service
yum:
name: httpd
state: present
- name : Start web server
service:
name: httpd
state: started
Remember the host we want to perform these operations against is always set at a play level. You could have any host or groups specified here but you must ensure that the host or group is first defined in the inventory file we created earlier. The host defined in the inventory file must match the host used in the Playbook .
All connection information for the host is retrieved from the inventory file. There is no hard rule to use all the hosts defined in the inventory file. We can choose one or multiple or a group or multiple groups from the inventory file in the play.
We can also split the list of tasks into two separate plays (using our YAML skills):
---
#Sample Ansible Playbook2.yml
-
name: Play1
hosts: centos
tasks:
- name : Execute command 'date'
command: date
- name : Execute script on server
script: my_script.sh
-
name: Play2
hosts: centos
tasks:
- name : Install httpd service
yum:
name: httpd
state: present
- name : Start web server
service:
name: httpd
state: started
The '-' indicates that it is an item in the list. So the Playbook is a list of dictionaries. Each play is a dictionary and has a set of properties called name, hosts and tasks . Remember these are properties of a dictionary and so the order doesn't really matter. So even if you swap the position of name and hosts, it's still a valid play.
How ever this is not the same for tasks. The tasks is a list as denoted by the dashes. List are ordered collections, So the position of entries matter. Swapping the position of entries here, really matters.
The different actions run by tasks are called modules. In our example, command, script, yum and service are Ansible Modules. There hundreds of other modules available. We will talk about them later.
The YAML format is key while developing Playbooks. We must pay extra attention to the indentation and structure of this file. For testing yaml files:
ATOM ide with linter-js-yaml and remote-sync (if you need)
Running Ansible
There are Two ways of running Ansible:
ansible command (ad-hoc commands) : Used when we want to use ansible for One task, such as Testing connectivity between ansible controller and target, Shutting down a set of server, ... . In that case we can run ansible with out writing a playbook.
ansible-playbook command : used when you have a playbook.
Demo - Running Ansible
We have already talked about ad-hoc commands, so go back for more examples:
We do not need to any hosts here, because we have specified the hosts inside the playbook.
As second example lets create a new playbook using copy module, to copy some files to target systems. Always use ansible documentations it has good examples
### Creating a test file
[user1@controller demo-playbook]$ cat > /tmp/test-file.txt
Sample Text File!!!
^C
As we said Ansible is smart enough and detects that the file is over there and does not change any thing. And that is the concept of Ansible Idempotency.
Idempotency: In simple words, Ansible only makes a change if it has to, if it is already in the same state then it really doesn't make the change. So we can run the ansible playbook as many time as we want, it is only going to make a change when there is a need.
Use ansible-playbook with -v or --verbose switches to get more information, use -vv or even -vvv for more information. -vvvv enables connection debugging!
Privilege Escalation
We have already get familiar with privilege escalation concept and why we need that. First lets run a sample playbook with out escalating privileges and see the results:
---
# Sample whoami-playbook.yaml
- hosts: all
tasks:
- name: do a uname
shell: uname -a > /home/user1/results.txt
- name: whoami
shell: whoami >> /home/user1/results.txt
### ubuntu
user1@ubuntu:~$ cat results.txt
Linux ubuntu 5.4.0-42-generic #46~18.04.1-Ubuntu SMP Fri Jul 10 07:21:24 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
root
### centos
[user1@centos ~]$ cat results.txt
Linux centos.example.com 3.10.0-1127.el7.x86_64 #1 SMP Tue Mar 31 23:36:51 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
root
usebecome_user the user name that we want to switch to like compare it with sudo su - user .
Handlers
Sometimes you want a task to run only when a change is made on a machine. For example, you may want to start a service if a task updates the configuration of that service, but not if the configuration is unchanged. Ansible uses handlers to address this use case. Handlers are tasks that only run when notified. If a handler get notified multiple times, it just runs once. Each handler should have a globally unique name.
As an example lets install vsftp , vsftp is the name of the package on both ubuntu and centos: