A plugin for Nautobot Chatops Plugin
Branch | Status |
---|---|
main | |
develop |
Chatbot that allows users to communicate directly with Ansible AWX/Tower from various chat platforms.
The Nautobot Chatops Ansible plugin extends the capabilities of the Nautobot Chatops plugin to include a new command available to the plugin. This is done by registering to the Python entry point in Nautobot Plugin Chatops, that provides functionality to the code written to interact with Ansible. This plugin introduces the following sub commands to the ansible
command:
- get_dashboard
- get_inventory
- get_projects
- get_job_templates
- run_job_template
- get_jobs
The dashboard command provides an Ansible Tower/AWX status dashboard. This gives a summary of:
- How many hosts are on the Tower system
- How many failed hosts (last job is failed)
- Total number of inventories
- How many inventories have failed
- How many project sync failures have occurred
The inventory sub-command provides inventories available and the details of those inventories.
Get projects will gather information about the projects available within the Ansible Tower/AWX instance. Information such as the name, description, SCM URL, and SCM branch are provided.
This gathers the information about the defined job templates on the Ansible Tower/AWX instance. It will provide the name, description, project, and the associated inventory with the Job Template configured.
The natural progression of gathering job templates is then to execute a particular job template. Executes a Job Template that does not require extra vars or surveys to be completed. The Job ID for the executed job template will be provided via a chat response.
The get jobs sub command will ask Tower for the last number of jobs, with a default count of the last 10 jobs. This will give the status of the jobs including:
- Job ID
- Name of the Job
- User that launched the job
- Created
- Finish time
- Status of the job
The plugin is available as a Python package in PyPI and can be installed with pip
pip install git+https://github.com/nautobot/nautobot-plugin-chatops-ansible.git
This ChatOps Plugin to Nautobot ChatOps Plugin requires the following list of environment variables to be added into the environment.
NAUTOBOT_TOWER_URI
: Ansible Tower HTTP URINAUTOBOT_TOWER_USERNAME
: Ansible Tower usernameNAUTOBOT_TOWER_PASSWORD
: Ansible Tower password
Once you have updated your environment file, restart both nautobot and nautobot-worker
$ sudo systemctl restart nautobot nautobot-worker
Add a slash command to Slack called /ansible
.
See the nautobot-chatops installation guide for instructions on adding a slash command to your Slack channel.
You may need to adjust your Access Grants in Nautobot depending on your security requirements.
Pull requests are welcomed and automatically built and tested against multiple version of Python and multiple version of Nautobot through TravisCI.
The project is packaged with a light development environment based on docker-compose
to help with the local development of the project and to run the tests within TravisCI.
The project is following Network to Code software development guideline and is leveraging:
- Black, Pylint, Bandit and pydocstyle for Python linting and formatting.
- Django unit test to ensure the plugin is working properly.
The project is coming with a CLI helper based on invoke to help setup the development environment. The commands are listed below in 3 categories dev environment
, utility
and testing
.
Each command can be executed with invoke <command>
. All commands support the arguments --nautobot-ver
and --python-ver
if you want to manually define the version of Python and Nautobot to use. Each command also has its own help invoke <command> --help
build Build all docker images.
debug Start Nautobot and its dependencies in debug mode.
destroy Destroy all containers and volumes.
start Start Nautobot and its dependencies in detached mode.
stop Stop Nautobot and its dependencies.
cli Launch a bash shell inside the running Nautobot container.
create-user Create a new user in django (default: admin), will prompt for password.
makemigrations Run Make Migration in Django.
nbshell Launch a nbshell session.
tests Run all tests.
pydocstyle Run pydocstyle to validate docstring formatting adheres to NTC defined standards.
bandit Run bandit to validate basic static code security analysis.
black Run black to check that Python files adhere to its style standards.
unittest Run Django unit tests for the plugin.
For any questions or comments, feel free to swing by the Network to Code slack channel (channel #networktocode). Sign up here