Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
August 16, 2021 11:52 am GMT

DevOps 101 : Introduction to Ansible

Ansible

image

What is Ansible?

Ansible is an open-source IT Configuration Management, Deployment and Orchestration tool. It aims to improve the scalability, consistency, and reliability of your IT environment. It is simple to use yet powerful enough to automate complex multi-tier IT application environments.

Ansible can also automate the configuration of a wide range of systems and devices such as databases, storage devices, networks, firewalls, and many others. It makes sure that all the necessary packages and all other software are consistent on the server to run the application. The best part is that you dont even need to know the commands used to accomplish a particular task. You just need to specify what state you want the system to be in and Ansible will take care of it.

It allows you to create groups of machines, describe how these machines should be configured or what actions should be taken on them. Ansible issues all commands from a central location to perform these tasks. It uses the playbook to describe automation jobs, and which uses a very simple language YAML.

Flow of working with Ansible:

1). Create playbook and inventory in local machine.

2). Create SSH to the target nodes.

3). Ansible Server gathers the facts of the target nodes to get the indication of the target nodes.

4). Playbook are sent to nodes.

5). Playbook are executed in the nodes.

Important terms used in Ansible:

- Ansible server: The machine where Ansible is installed and from which all tasks and playbooks will be ran.

- Module: Basically, a module is a command or set of similar commands meant to be executed on the client-side.

- Task: A task is a section that consists of a single procedure to be completed.

- Role: A way of organizing tasks and related files to be later called in a playbook.

- Fact: Information fetched from the client system from the global variables with the gather-facts operation.

- Inventory: File containing data about the ansible client servers.

- Play: Execution of a playbook.

Handler: Task which is called only if a notifier is present.

- Notifier: Section attributed to a task which calls a handler if the output is changed

- Tag: Name set to a task which can be used later on to issue just that specific task or group of tasks.

Common Ansible Features

1). Configuration Management: Ansible is designed to be very simple, reliable, and consistent for configuration management. For example, change the configuration of an application, OS, or device; start and stop services; install or update applications; implement a security policy; or perform a wide variety of other configuration tasks.

2). Application Deployment: Ansible makes DevOps process easier by automating the deployment of internally developed applications to your environment systems. Ansible lets you quickly and easily deploy multi-tier apps. You wont need to write custom code to automate your systems; you list the tasks required to be done by writing a playbook, and Ansible will figure out how to get your systems to the state you want them to be in. In other words, you wont have to configure the applications on every machine manually.

3). Orchestration: With application deployment, you need to manage front-end, back-end services, databases, networks, storage, and so on. Also, you need to make sure that all the tasks are handled in the proper order.

Ansible uses automated workflows, provisioning, and more to make orchestrating tasks easy. Once youve defined your infrastructure using the Ansible playbooks, you can use that same orchestration wherever you need to.

4). Security and Compliance: As with application deployment, site-wide security policies (e.g. firewall rules) can be implemented along with other automated processes. If you configure the security details on the control machine and run the associated playbook, all the remote hosts will automatically be updated with those details. That means you wont need to monitor each machine for security compliance continually manually.

5). Cloud Provisioning: With Ansible, you can provision cloud platforms, virtualized hosts, network devices, and bare-metal servers.

Benefits of Ansible

The main benefit of Ansible is simplicity.

1). Simple Setup: A minimal requirement and configuration needed to get it to work.

2). Simple to use: No special coding skills are necessary to use Ansibles playbooks. Ansible is easier to learn than many of the other IT automation engines.

3). Agentless: Ansible is completely agentless. No need to install any software or any agent on the client systems you want to automate. Ansible only needs to be installed on the control machine which can be your PC.

4). Flexible: You can orchestrate the entire application environment no matter where its deployed. You can also customize it based on your needs.

5). Efficient: Because you dont need to install any extra software, theres more room for application resources on your server.

6). Powerful: Ansible lets you model even highly complex IT workflows.

7). Fast: Built on top of python, which is fast and one of the robust programming languages in todays world.

8). SSH: Very simple password-less network authentication protocol which is secure. So, your responsibility is to copy this key to the client.

9). Free: Ansible is an open-source tool.

The popular alternatives to Ansible includes:

  • Puppet
  • Chef
  • SaltStack
  • Terraform

If you have anything to add or a resource to share please leave it in the comments below.

Connect With me on twitter: https://twitter.com/HarunMbaabu


Original Link: https://dev.to/grayhat/devops-101-introduction-to-ansible-1n64

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To