Skip to content

ansible/ansible-sdk

Repository files navigation

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.

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 podman using brew, 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:

  • origin tracks your GitHub fork.
  • upstream tracks this repository.

Prepare the release:

  1. Make sure your fork is up to date with the upstream remote:
git checkout main && git pull origin main && git fetch upstream && git merge upstream/main
  1. Create a release branch that follows the naming convention prepare_$VERSION_release:
git checkout -b prepare_$VERSION_release -t upstream/main
  1. Run the following command to autogenerate CHANGELOG.rst:
towncrier build --yes --version $VERSION`
  1. Push the created release branch prepare_$VERSION_release to 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:

See the Ansible Community Guide for details on contributing to Ansible.

License

See LICENSE to see the full text.