ansible-sdk
ansible-sdk copied to clipboard
The Ansible SDK
Ansible SDK for Python
The Ansible SDK provides a lightweight Python library for dispatching and live-monitoring Ansible tasks, roles, and playbooks from the product or project.
Dispatching of jobs can be local to the machine you are running your python application from or over Ansible Mesh using the receptor integrations.
Demo application to show how you can use the SDK in real use case
Documentation
We are building extensive documentation and API reference here. Please feel free to contribute and help the documentation effort.
You can build the documentation from this repository as follows:
$ tox -e docs
$ firefox docs/build/html/
If you want to run Sphinx commands directly, open the tox.ini file and use the commands in the [testenv:docs] section.
Remember that you need to pip install docs/doc-requirements.txt before running Sphinx.
Releases and maintenance
| Release | Status | Expected end of life |
|---|---|---|
| 1 | Maintained | TBA |
Ansible version compatibility
This library has been tested against following Ansible versions: >=2.9.10.
Installation
You can follow the installation guide specified in docs.
Required Python libraries and SDKs
The Ansible-SDK depends on Python 3.8+, Ansible Core, Ansible Runner and other third party libraries:
Testing and Development
- Red Hat Enterprise Linux - Install Ansible-SDK and dependecies directly on/into a RHEL virtual machine.
- MacOS - Install
podmanusingbrew, and pull the RHEL8 image, ssh to that and follow the RHEL instructions above.
Publishing a new version
This section assumes that you have configured the following git remotes for your local repository:
origintracks your GitHub fork.upstreamtracks this repository.
Prepare the release:
- Make sure your fork is up to date with the
upstreamremote:
git checkout main && git pull origin main && git fetch upstream && git merge upstream/main
- Create a release branch that follows the naming convention
prepare_$VERSION_release:
git checkout -b prepare_$VERSION_release -t upstream/main
- Run the following command to autogenerate
CHANGELOG.rst:
towncrier build --yes --version $VERSION`
- Push the created release branch
prepare_$VERSION_releaseto your GitHub repo and open a PR for review.
Push the release:
- Tag the release:
git tag -s $VERSION - Push the tag:
git push origin $VERSION
Communication
We welcome community contributions to this repo. If you find problems, please open an issue or create a PR against the repo.
You can also join us on:
- IRC - the
#ansible-develirc.libera.chat channel
See the Ansible Community Guide for details on contributing to Ansible.
License
See LICENSE to see the full text.