Keeping Ansible in Check

Hi,

There are now four of us contributing to our ansible repository. We’re using it for a great deal and it’s been a game-changer. However …

With four people contributing, we have a small amount of duplication, some orphaned roles that one person wrote, another upgraded, … stuff like that. We meed a sanity checker.

Are there any tools that can tell one, what playbooks are being called, resources used (vars, includes) and so on?

~brian

“Are there any tools that can tell one, what playbooks are being called, resources used (vars, includes) and so on?”

Nothing general purpose enough.

You could use the playbook API, get back the task objects, and not run them, however.

I wouldn’t try to parse it manually.