This Ansible tutorial aims at teaching the basics of Ansible/AWX and then the basics of how Ansible can interact with Dynatrace. It doesn't really teach best practices or indepth topics but it should give you the building blocks to go and explore Ansible further.

Prerequisites

Extra Resources

As this tutorial only aims at getting you an environment setup as well as some basics to show you the power of Ansible you may be looking for more. I would highly suggest taking a look at Udemy as there are some great tutorials for expanding your knowledge and understanding of playbooks. As well as Udemy google is your best friend. Ansible is an incredibly well documented tool and there is plenty of information out there. Their own documentation can be challenging but there are guides and blogs for most things that you would want to do with Ansible.

Notes

If you already have an environment with Ansible and AWX then you can skip this step otherwise, lets get started!

Follow this tutorial to setup an environment with Ansible and awx.

Ensure while following the tutorial the packages you are downloading are up to date. Ensuring they are up to date is VERY IMPORTANT. Specifically look out for Ansible and NodeJS as they were the problem children during the creation of this tutorial.

Also while following the tutorial ensure that during step 4 you uncomment the admin_password line in the inventory file and then set a secure password. This password you will use to login to AWX later.

Notes

Now that you have Ansible and AWX installed lets create your first inventory file so that you can run playbooks on the servers defined within this inventory file.

Create and navigate to a new directory for storing project files. Within this create a file called inventory and don't give it an extension. Add the following to this new inventory file. See the notes for an explanation as well as some other useful information.

alt text

From the directory with your inventory file run ansible AWXLocal -i inventory -m ping. The first time you run it, it should ask if you want to continue connecting, type yes and then it should connect and run! The output should look something like the following.

alt text

Congratulations, you just ran your first Ansible job using the ping module! Now lets continue and start using AWX to run and manage these.

Notes

For our AWX project you will be using GitHub. By using GitHub you make it so that the project can be easily updated within AWX and also can be easily worked on by multiple people.

Create a new respository and within it create 2 files, inventory.ini and playbook-01.yml. Within the inventory file put what you had in your first inventory but replace localhost with the actual address of the host. Also within the new inventory file remove any variables configured such as the username, password or key used to login to the host. We will define these credentials within AWX in future steps.

Within the playbook file add the following and then push these changes back to your repository so that its up to date.

alt text

On GitHub create a personal access token with read access to your repositories. You will be using this to create and update your project within AWX.

Navigate to your AWX web portal and then navigate to the credentials page on the left. Add a new resource with type source control. Use your GitHub email as the username and the personal access token as your password and then save this credential.

alt text

Navigate to the projects page and create a new project. Give it a name, set the source control as git, copy the GitHub URL for the project you created and then use the GitHub credentials you created as the source control credentials.

alt text

After creating the project navigate to the project page where all of your projects are listed and click on the sync project button. If this is successful you're ready to move on!

alt text

First you need to create an inventory using the inventory file from our project. Navigate within AWX to the inventory page and create a new inventory from there. Give it a name, selet your project in the source details section and then select the inventory file from your project.

alt text

Once created you will need to sync it like the project so on the page listing all of your inventories click on sync and if everything goes well you'll have a new inventory. To confirm everything has gone well check the hosts and groups page to see your host and group imported from your inventory.

You might remember in previous steps you removed the login credentials from our inventory file so now you need to add them in AWX. Navigate to the credentials page and create a new credential. Set it to the type machine and then fill in the required details for host login such as username, password or key.

Now, to run a job you need to create a job template so navigate to the templates page and create a new job template. On this page select the inventory you just created, the project you created earlier, the playbook thats in your project and then lastly the credentials required to login to the host.

alt text

Now back on the templates page click the launch button for your newly created template and watch it execute. If everything goes correctly you just launched your first AWX job.

Ansible is an incredibly powerful tool used for managing hundreds if not thousands of hosts at a time. In this step you will have a quick look at how you can install OneAgent on our hosts with Ansible.

Start by navigating to the OneAgent installation page within your dynatrace tenant. On this page there is a download link for a OneAgent Ansible collection which you will use to install OneAgent. Download the OneAgent collection onto the host running Ansible.

alt text

On the host with Ansible run ansible-galaxy collection install downloadedFileName.tar.gz replacing downloadedFileName with the actual file name.

Now, like you did earlier, create a new playbook within out project directory. you can call this one Playbook-02.yml and then add the following.

alt text

Replace the environment URL with your environments URL and then add your own PaaS token generated within Dynatrace.

Save this new playbook and commit it to your repository. Back in AWX sync your project like you did earlier and then go through the steps to create a job template again but this time with your new playbook. Now run this new playbook and if it succeeds congratulations! If it doesn't I have some notes on problems I encountered and how to fix them.

Notes

alt text

Utilising problem notifications you can make Dynatrace trigger a playbook when certain problems occur. This can be incredibly powerful and allows for auto remediation so that people do not have to manually diagnose a problem and trigger a fix themselves.

To set up an example of this head over to your Dynatrace tenant and navigate to Settings > Integrations > Problem Notifications and then add a new problem notification. Go through and configure the problem notification like I have. For the username and password this is the username and password that will be used to authenticate with AWX. For testing you can just use the admin account you use to login to AWX.

alt text

Now click send test notification and it should run whichever playbook you set up to run. If everything goes well, back in AWX you will see your playbook successfully run.

alt text

If you want to test it out further you can generate problems that would trigger notifications for the alerting profile you selected otherwise it is as easy as that!

Thats it for the tutorial. For further testing and learning I would highly suggest finding a way to automate problem remediation within a test environment or you could go deeper into playbook creation. We only scratched the surface of what Ansible is capable of, there is so much more you can do.

Notes