Linux

Using Awx to deploy, schedule and run playbooks

image-129

In the previous tutorial, we deployed AWX. Kindly view the tutorial HERE. Now we will use AWX to deploy a simple playbook and show how to run, schedule, and manage jobs from the AWX console. Kindly check out some of my other guides: Openstack Deployment with Devstack, Deploying a load balancer from scratch and adding backend servers, how to monitor services using Zabbix, and how to set-up PowerShell on a Linux server.

First, log in to our Awx console using the admin credentials and create an inventory.

image-141
image-142

Next, Create a host. This host is where all your playbooks will be deployed on and add the IP address and description also select your test or default inventory

image-143

Create your credential. Ansible uses SSH Keys, however from AWX, you can use login credentials like username and password

image-144
image-145

The next step is to create a template. However, your template needs to have an existing playbook in the AWX server. Let’s create a sample uptime playbook to test.

cd /var/lib/awx/projects/ (The default awx directory)
mkdir playbook

mkdir playbook for your current project and create your playbook in the directory

vim uptime.yaml and paste the below content (In my case I used test.yaml)
--- 

 -hosts: all
  gather_facts: true
  become: yes
  become_user: root
  become_method: sudo

  tasks:
  - name: uptime
  command: uptime      
  register: uptime

Once done, we can go back to the dashboard and create our template

image-146

Save and launch

image-147

Now we can see if the task was successful

image-148

We can also schedule a playbook to be run daily, weekly or monthly. Go to template, click on the preferred template and navigate to schedule and add a schedule

image-149
image-150

Now you can view jobs to track the progress of playbooks. If they were successful or failed.

image-151

Using this, you can manage and run jobs for the lab environment and production environment also. AWX makes ansible more comfortable to use and allows control access, graphically manage, and synchronization of inventory. It also helps log all your jobs.

Now you can create your playbooks and run them from AWX.

Subscribe
Notify of
guest

1 Comment
Inline Feedbacks
View all comments
ursr
ursr
1 year ago

thanks for this article. can you please look over the published playbook above? when I try to use it I get no end of syntax error warnings in awx and I can’t follow the example. it starts with four dashes and yaml is supposed to start with three then it complains about other yaml syntax issues. thanks for fixing those.

1
0
Would love your thoughts, please comment.x
()
x