AWS Global Infrastructure

DevOps

Topics Covered
  • DevOps (74 Blogs)
  • Mastering Git and GitHub (3 Blogs)
  • Docker (9 Blogs)
  • DevOps Engineer Masters Program (18 Blogs)
SEE MORE

Ansible Tutorial – Learn To Write Ansible Playbooks

Last updated on Dec 15,2021 67.4K Views

Reshma Ahmed
Reshma is a tech-savvy professional working as a Research Analyst at Edureka.... Reshma is a tech-savvy professional working as a Research Analyst at Edureka. She is a DevOps evangelist, a Cloud enthusiast, a Big Data Hadoop...
3 / 8 Blog from Ansible

Ansible Tutorial

I hope you went through my previous blog to learn what is Ansible and the most used terminologies of Ansible. In case you haven’t, please do check it out so that you can get a better understanding of this Ansible Tutorial. You should also know that Ansible makes up a crucial part of DevOps Certification as a tool for configuration management, deployment and orchestration.

Let me give you an overview of this ‘Ansible Tutorial’:

Ansible Playbook Tutorial | DevOps Training | Edureka

Ansible Tutorial – Writing Ansible Playbooks

Playbooks in Ansible are written in YAML format. It is a human-readable data serialization language. It is commonly used for configuration files. It  can also be used in many applications where data is being stored.

For Ansible, nearly every YAML file starts with a list. Each item in the list is a list of key/value pairs, commonly called a “hash” or a “dictionary”. So, we need to know how to write lists and dictionaries in YAML.

All members of a list are lines beginning at the same indentation level starting with a “- ” (dash and space). More complicated data structures are possible, such as lists of dictionaries or mixed dictionaries whose values are lists or a mix of both.

 e.g. For a list of departments in edureka:

departments:
- marketing
- sales
- solutions
- content writing
- support
- product

Now let me give you an example of a dictionary:

-USA
-continent: North America
-capital: Washington DC
-population: 319 million

Hosts And Users:

For each play in a playbook, you get to choose which machines in your infrastructure to target and which remote user to complete the tasks. To include hosts in Ansible inventory, we will be using the IP addresses of the host machines.

Generally the hosts are a list one or more groups or host patterns, separated by colons. The remote user is just the name of the user account.

Variables:

Ansible uses variables which are defined previously to enable more flexibility in playbooks and roles. They can be used to loop through a set of given values, access various information like the host name of a system and replace certain strings in templates with specific values.

Ansible already defines a rich set of variables, individual for each system. Whenever Ansible will run on a system, all facts and information about the system are gathered and set as variables.

But there is a rule for naming variables. Variable names should be letters, numbers, and underscores. Variables should always start with a letter. E.g. wamp_21, port5 is valid variable names, whereas 01_port, _server are invalid.

Tasks:

Tasks allow you to break up bits of configuration policy into smaller files. Task includes pull from other files. Tasks in Ansible go with pretty much the English meaning of it.

E.g: Install <package_name>, update <software_name> etc.

Handlers:

Handlers are just like regular tasks in an Ansible playbook, but are only run if the Task contains a notify directive and also indicates that it changed something. For example, if a config file is changed, then the task referencing the config file may notify a service restart handler.

Let me give you an example of a playbook which will start the Apache httpd server program:

---
- hosts: webservers
  vars:
    http_port: 80
    max_clients: 200
  remote_user: root
  tasks:
  - name: ensure apache is at the latest version
    yum: name=httpd state=latest
  - name: write the apache config file
    template: src=/srv/httpd.j2 dest=/etc/httpd.conf
    notify:
    - restart apache
  - name: ensure apache is running (and enable it at boot)
    service: name=httpd state=started enabled=yes
  handlers:
    - name: restart apache
      service: name=httpd state=restarted

I hope the example will relate you to all the description of the playbook components that I have mentioned above. If it is still not clear to you, don’t worry all your doubts will be clear in the later part of this blog.

This is all about playbooks. The playbooks which will be written by you. But Ansible provides you with a wide range of modules as well, which you can use.

Ansible Tutorial – Modules

Modules in Ansible are idempotent. From a RESTful service standpoint, for an operation (or service call) to be idempotent, clients can make that same call repeatedly while producing the same result. In other words, making multiple identical requests has the same effect as making a single request.

There are different types of modules in Ansible

  • Core modules
  • extras modules

Core Modules

These are modules that the core Ansible team maintains and will always ship with Ansible itself. They will also receive slightly higher priority for all requests than those in the “extras” repos.

The source of these modules is hosted by Ansible on GitHub in the Ansible-modules-core.

Extras Modules

These modules are currently shipped with Ansible, but might be shipped separately in the future. They are also mostly maintained by the Ansible community. Non-core modules are still fully usable, but may receive slightly lower response rates for issues and pull requests.

Popular “extras” modules may be promoted to core modules over time.

The source for these modules is hosted by Ansible on GitHub in the Ansible-modules-extras.

E.g: The one of the extras module in Remote Management Modules is ipmi_power module, which is a power manger for the remote machines. It requires python 2.6 or later and pyghmi to run.

You can use this module by writing an adhoc command like the one I have written below:

ipmi_power : name ="test.domain.com" user="localhost" password="xyz" state="on"

Ansible Tutorial – Return Values

Ansible modules normally return a data structure that can be registered into a variable, or seen directly when output by the Ansible program. Each module can optionally document its own unique return values.

Some examples of return values are:

  • changed: returns with a boolean value whenever the task makes any change.
  • failed: returns a boolean value, if the task is failed
  • msg: it returns a string with a generic message relayed to the user.

Ansible Tutorial – AdHoc Commands

Adhoc commands are simple one line command to perform some action. Running modules with Ansible commands are adhoc commands.

E.g: 

ansible host -m netscaler -a "nsc_host=nsc.example.com user=apiuser password=apipass"

The above adhoc command uses the netscaler module to disable the server. There are hundreds of modules available in Ansible from where you can refer to and write adhoc commands.

Well, enough with all the theoretical explanations, let me explain you Ansible with some hands on.

Ansible Tutorial – Hands On

I am going to write a playbook to install Nginx on my node/host machine.

Let’s begin :)

Step 1: Connect to your hosts using SSH. For that, you need to generate a public SSH key.

Use the command below:

ssh-keygen

Generate Ssh Key - Ansible Tutorial - Edureka

As you can see in the snapshot above, the command ssh-keygen generated a public SSH key.

Step 2: Your next task is to copy the public SSH key on your hosts. In order to do that, use the command below:

ssh-copy-id -i root@<IP address of your host>

Copy Ssh Key - Ansible Tutorial - Edureka

The snapshot above shows the SSH key being copied to the hosts.

Step 3: List the IP addresses of your hosts/nodes in your inventory. 

Use the following command:

vi /etc/ansible/hosts

Test Server - Ansible Tutorial - Edureka

This will open a vi editor where you can list down the IP addresses of your hosts. This is now your inventory.

Step 4: Let’s ping to ensure a connection has been established.

Ping Hosts - Ansible Tutorial - Edureka

The snapshot above confirms that connection has been made between your control machine and host.

Step 5: Let us now write a playbook to install Nginx on the host machine. You can write your playbook in the vi editor. For that, simply create your playbook, using the command:

vi <name of your file>.yml

The below snapshot shows my playbook to install Nginx written in YAML format.

Yaml Nginx - Ansible Tutorial - Edureka

The tasks of a playbook are defined in YAML as a list of dictionaries and executed from top to bottom. If we have several hosts, then each task is tried for each host before moving on to the next one. Each task is defined as a dictionary that can have several keys, such as “name” or “sudo” which signify the name of the task and whether it requires sudo privileges. 

A variable server_port is set that listens on TCP port 8080 for incoming requests.

Here, the first task is to get the necessary package for installation of Nginx and then install it. Internally, Ansible will check if the directory exists and create it if it’s not, otherwise it will do nothing.

The next task is to configure Nginx. In Nginx, contexts contain configuration details.

Here, the template is a file you can deploy on hosts. However, template files also include some reference variables which are pulled from variables defined as part of an Ansible playbook or facts gathered from the hosts. Facts containing the configuration details are being pulled from a source directory and being copied to a destination directory.

Handlers here define the action to be performed only upon notification of tasks or state changes. In this playbook, we defined, notify: restart Nginx handler which will restart Nginx once the files and templates are copied to hosts.

Now, save the file and exit.

Step 6: Now let’s run this playbook, using the command below:

ansible-playbook <name of your file>.yml

Run Playbook - Ansible Tutorial - Edureka

We can see in the screenshot above that our task is getting executed; Nginx being installed.

Step 7: Let’s check if Nginx is installed on my host machine. Use the command below:

ps waux | grep nginx

Run Nginx - Ansible Tutorial - Edureka

You can see in the screenshot above, that different process ids 3555 and 103316 are running which ensures that Nginx is running on your host machines.

 

Congratulations! You have successfully deployed Nginx on your host using Ansible playbooks. I hope you have enjoyed reading this Ansible Tutorial blog. Please let me know if you have any queries in the comment section below.

If you found this “Ansible Tutorial” relevant, check out the DevOps training by Edureka, a trusted online learning company with a network of more than 250,000 satisfied learners spread across the globe. The Edureka DevOps Certification Training course helps learners gain expertise in various DevOps processes and tools such as Puppet, Jenkins, Ansible, Nagios and Git for automating multiple steps in SDLC.

Upcoming Batches For DevOps Certification Training Course
Course NameDateDetails
DevOps Certification Training Course

Class Starts on 23rd March,2024

23rd March

SAT&SUN (Weekend Batch)
View Details
DevOps Certification Training Course

Class Starts on 13th April,2024

13th April

SAT&SUN (Weekend Batch)
View Details
DevOps Certification Training Course

Class Starts on 15th April,2024

15th April

MON-FRI (Weekday Batch)
View Details
Comments
5 Comments
  • Acaminero New York says:

    Do DevOps engineers write Python code ?

    • EdurekaSupport says:

      Yes, DevOps engineer do have Python implementations as well. We hope you liked our blog! :)

  • Aman Aman says:

    You have not installed nginx in the host machine.

  • Harsh says:

    nice

    • EdurekaSupport says:

      Thank you for appreciating our work, Harshal! :)

Join the discussion

Browse Categories

webinar REGISTER FOR FREE WEBINAR
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP

Subscribe to our Newsletter, and get personalized recommendations.

image not found!
image not found!

Ansible Tutorial – Learn To Write Ansible Playbooks

edureka.co