Category Archives: ansible

Ansible Automation Platform Projects

Overview This article will provide instructions in how to configure Ansible Automation Platform (AAP) and how to get your Project working. Links for various fields that I don’t need in my environment is provided at the end of this article. … Continue reading

Posted in ansible, Computers, Git | Tagged , , | 1 Comment

Ansible Automation Platform Installation

Overview In order to use AWX, aka the upstream product of Ansible Automation Platform, formerly Ansible Tower, we need to have a working cluster. This article provides instructions in how to install and use AWX. Installation The installation process for … Continue reading

Posted in ansible, Computers, Kubernetes | Tagged , , , | 1 Comment

Python and Postgresql Index

Overview This is the index article that will provide links to individual articles on the conversion of one of my projects from a php/mysql(mariadb) to python and postgresql. There shouldn’t be too many however like my Kubernetes and ArgoCD series … Continue reading

Posted in ansible, Computers, Terraform | Tagged , , , , | Leave a comment

Jinja2: Encountered Unknown Tag

Overview I was running an Ansible playbook and one of the templates failed with the following error: Jinja2 uses a brace + percent and a percent + brace to identify Jinja2 commands that are used when preprocessing a template. This … Continue reading

Posted in ansible, Computers | Tagged , , , | Leave a comment

Ansible Patterns

Overview One of the cool things with Ansible are Patterns. With Patterns, you can combine entries in your inventory file. Instead of having a bunch of tags specific to each site, you can instead have a list of servers in … Continue reading

Posted in ansible, Computers | Tagged , | Leave a comment

Ansible Tags – A Story

Started a new job back in October. The team is just me and another guy and the boss. And the other guy quit in December. The real good thing is it’s a small single project shop and pretty much all … Continue reading

Posted in ansible, Computers | Tagged , | Leave a comment

Ansible Tags

Overview Simply enough, Ansible Tags let you run specific tasks in a play. If you have a lengthy playbook or are testing tasks within a playbook, you can assign tags to tasks that let you run a specific task vs … Continue reading

Posted in ansible, Computers | Tagged , | Leave a comment

Ansible Handlers

Overview Ansible Handlers are tasks that are only performed when a calling task has successfully changed something. Updating Docker Say for example you want to try and update docker. There isn’t always an update available but if there is an … Continue reading

Posted in ansible, Computers | Tagged , | Leave a comment