
This updates some of the documentation bits that referred to individual components like ara-server, ara-plugins and ara-clients. Change-Id: I8ab3fdfb543786daacec22f7f1b90af4f17b5a2b
1.1 KiB
1.1 KiB
Architecture and Workflows
Recording data from Ansible
- A human (or a system, script, etc.) installs ARA and configures Ansible to use the ARA callback
- A human (or a system, script, etc.) executes an
ansible-playbook
command - Ansible sends hooks for every event to callback
plugins (
v2_playbook_on_start
,v2_runner_on_failed
, etc.) - The callback plugin, organizes the data sent by Ansible and sends it to the API client
- The API client sends the data to the API over HTTP or locally offline through an internal implementation
- The API server receives the POST from the client, validates it and sends it to the database model backend
- The API server sends a response back to the client with the results
- The API client sends the response back to the callback with the results
- The callback plugin returns, ending the callback hook
- Ansible continues running until it is complete (back to step 2)