DevOps Certification Training Course
- 180k Enrolled Learners
- Weekend/Weekday
- Live Class
Today’s scaling industries aim to provide large productivity gains, but they have to deal with a wide variety of automation challenges, which are overcome by tools such as Ansible. This blog on Ansible Tower will give you a complete insight:
Alright!! So, let’s get started with what is Ansible Tower.
Ansible Tower is Ansible at a more enterprise level. It is a web-based solution for managing your organization with a very easy user interface that provides a dashboard with all of the state summaries of all the hosts, allows quick deployments, and monitors all configurations.
The tower allows you to share the SSH credentials without exposing them, logs all the jobs, manage inventories graphically and syncs them with a wide variety of cloud providers.
The following are the pre-requisites to install Tower:
Ansible Tower is supported by the following operating systems:
You should have the latest stable release of Ansible.
64-bit support required (kernel and runtime) and 20 GB hard disk.
Minimum 2 GB RAM (4+ GB RAM recommended) is required.
For Amazon EC2: Instance size of m3.medium or larger is required for less than 100 hosts and if you have more than 100 hosts, then you require an instance size of m3.xlarge or larger.
For HA MongoDB setups, you can use the below formula for a rough estimate of the amount of space required.
(NumberOfHostsIninventory)*(NumberOfScans)*(AverageModuleFactSize)*(NumberOfModulesScanning)
Subscribe to our youtube channel to get new updates..!
In this section of the blog, you will get an insight into the following parameters of the tower:
The Ansible Tower has 3 different editions; the self-support, standard, and the premium edition. Each of these editions varies with the capabilities they offer. You can do everything from application deployment to multi-tiered orchestrations, with control, security and logging capabilities.
SELF – SUPPORT | STANDARD | PREMIUM | |
Ansible Tower Dashboard | Yes | Yes | Yes |
Real-Time Job Outputs | Yes | Yes | Yes |
Remote Command Execution | Yes | Yes | Yes |
Job Scheduling | Yes | Yes | Yes |
Visual Inventory Management | Yes | Yes | Yes |
Workflows | No | Yes | Yes |
Built-In Notifications | Yes | Yes | Yes |
Role-Based Access Control | Yes | Yes | Yes |
Integration With Enterprise Accounts | No | Yes | Yes |
Audit Trail | No | Yes | Yes |
Logging and Analytics Integration | No | Yes | Yes |
Installation Support | No | Yes | Yes |
24*7 Support | No | No | Yes |
Maintenance and Upgrades | Yes | Yes | Yes |
Documented API & Tower CLI | Yes | Yes | Yes |
Scale-Out Clustering | No | Yes | Yes |
As I mentioned before the tower has 3 editions, out of which the self-support one is the free trial version. For the other two edition’s pricing, you can refer to the below table:
Below are few of the Ansible Tower features:
Alright!! So, now that you guys have understood the features of Ansible Tower, let’s get into the installation of Ansible Tower.
Before you install Ansible Tower, you have to first install and configure Ansible on your operating system and then also install PostgreSQL.
So, first let’s start by installing and configuring Ansible. I will be using Ubuntu – 16.04 version as my operating system.
Step 1: As a root user, configure the Ansible PPA using the below commands.
apt-get install software-properties-common apt-add-repository ppa:ansible/ansible
Step 2: After configuring, install Ansible using the below commands.
apt-get update apt-get install ansible
After you are done installing, install PostgreSQL.
Use the below commands, to install PostgreSQL.
apt-get update sudo apt-get install postgresql postgresql-contrib
Step 1.1: Once you are done installing Ansible, register to download the Ansible – Tower.
Step 1.2: You will receive an email after you register to download the Ansible Tower. Open your mail and then click on the download button, to download.
Step 1.3: Then extract the Ansible Tower installation tool using the below commands.
tar xvzf ansible-tower-setup-latest.tar.gz ansible-tower-setup-<tower_version>
where tower-version, is the version of the tower you have downloaded.
Step 2: After that set up your inventory file, where you have to mention the necessary passwords (admin_password, pg_password, rabbitmq_password) in the inventory file.
Step 3: Now, as the Tower setup playbook script uses the inventory file, it has to be invoked as ./setup.sh from the path where you unpacked the Tower installer tarball.
./setup.sh
Step 4: Once you are done setting up the Tower, use the web browser to access the Tower server and view the Tower login screen, wherein you have to enter the username and password, to access the Tower Dashboard.
In this hands-on, I will show you how to create a job to print a message.
So, refer to the below diagram for the steps that we are going to follow.
To create a user, go the settings option and then choose the User tab. Once you enter the User tab, click on the Add option to add a new User. Mention the details required and then click on Save.
Now, create an Inventory, by just clicking on the Inventories option and then going to the Add option.
Once you click on the Add option, mention all the details required like the name, description, organization and then click on Save.
To create a host, go the Inventories tab and choose the inventory to which you want to add hosts. Then choose the Hosts tab and click on Add Hosts. Here I want to add hosts for the inventory that was created above. Once the details are mentioned, click on Save.
After creating hosts, create a credential by going to the settings options, and then choose the Credentials tab. After that, go to the Add option and mention the details. Once you are done, mentioning the details, click on Save.
There are two ways to access a simple playbook, either you can do it manually or by specifying a link from a Github repository.
In this blog, I am going to access the project manually.
For accessing a manually created playbook, you first have to create a playbook and then set up the project.
So, follow the below steps and start creating a playbook.
Use command line console as a root user and create a directory for your project on the Tower server file system, in which to store your Ansible playbooks for this project.
Now, make a new project directory by creating it on the Tower filesystem under the Project Base Path directory, located by default in “/var/lib/awx/projects/”. Here the new directory is DEMO.
Now, let’s start setting up a project.
To set up a project use your web browser, create the new project by clicking on the Projects link at the top of the Tower Dashboard and click on the Add button.
Once you click on the Add button, you will be redirected to a page wherein you have to fill in details such as Name and Description of Project. Then, set the SCM type to be Manual, and for the Playbook Directory, select a value which corresponds to the subdirectory you created and then click on Save.
Now, let’s create a Job Template, by going to the Job Template tab and then clicking on the Add button. Once you click on the Add button, you will be re-directed to the page where you have to fill in the details such as Name, Description, Inventory name, Project, Playbooks, Credentials.
From the Job Templates overview screen, click the Launch button(rocket symbol) to run the Job Template. When you launch the job you can clearly see at the end of the output that the message has been printed.
So, guys, that’s an end to this blog!!
If you found this blog interesting and relevant, check out the DevOps Course 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, Nagios, Ansible, Docker, Kubernetes and GIT for automating multiple steps in SDLC.
Course Name | Date | Details |
---|---|---|
DevOps Certification Training Course | Class Starts on 23rd November,2024 23rd November SAT&SUN (Weekend Batch) | View Details |
DevOps Certification Training Course | Class Starts on 25th November,2024 25th November MON-FRI (Weekday Batch) | View Details |
DevOps Certification Training Course | Class Starts on 21st December,2024 21st December SAT&SUN (Weekend Batch) | View Details |
edureka.co