ARA records Ansible playbook runs and makes the recorded data available and intuitive for users and systems.
ARA doesn't run your playbooks for you: it integrates with Ansible as a callback plugin wherever it is.
Whether you are running Ansible from your personal laptop or a server, all you need to do is to install ARA, configure Ansible to use ARA and you're good to go.
# Install ARA pip install ara # Make Ansible use the ARA callback plugin regardless of python version export ANSIBLE_CALLBACK_PLUGINS="$(python -c 'import os,ara; print(os.path.dirname(ara.__file__))')/plugins/callbacks" # Run your playbook # ansible-playbook myplaybook.yml # Start the ARA standalone webserver ara-manage runserver # Browse http://127.0.0.1:9191
Refer to the documentation for more information.
ARA has four main components:
- An Ansible callback plugin to record playbook runs into a local or remote database
- The ara_record and ara_read pair of Ansible modules to record and read persistent data with ARA
- A CLI client to query the database
- A dynamic, database-driven web interface that can also be generated and served from static files
A video preview and explanation of the web interface is available on YouTube, featuring playbook runs from the OpenStack-Ansible project.
Otherwise, screenshots highlighting some of ARA's features are available in the frequently asked questions
The ARA community hangs out on IRC, Slack and Discord.
All three chats are seamlessly linked to each other so you can use your preferred client to come chat with us !
IRC
- Server: irc.freenode.net
- Channel: #ara
Slack
- https://ara-community.slack.com
- Join with the Slack invitation
Discord
- https://discordapp.com
- Join with the Discord invitation
Contributions to ARA are definitely welcome and much appreciated !
ARA does not use GitHub for issues or pull requests.
ARA uses the OpenStack infrastructure for code hosting and review as well as project and bug/issue tracking.
The contributor documentation will get you started quickly if you need help contributing !
- Submitted code reviews are available on Gerrit: https://review.openstack.org/#/q/project:openstack/ara
- Bugs, issues and feature tracking are available on StoryBoard: https://storyboard.openstack.org/#!/project/843
You might also be interested in reading the project manifesto in order to have a good understanding of the project's core values and philosophy.
Frequently asked questions and documentation on how to install, configure, use to ARA is available on readthedocs.io.
See contributors on GitHub.
Copyright (c) 2017 Red Hat, Inc. ARA is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. ARA is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with ARA. If not, see <http://www.gnu.org/licenses/>.