ansible / ansible-sdk

The Ansible SDK
Apache License 2.0
24 stars 14 forks source link

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

Publishing a new version

This section assumes that you have configured the following git remotes for your local 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
  2. Create a release branch that follows the naming convention prepare_$VERSION_release:

    git checkout -b prepare_$VERSION_release -t upstream/main
  3. Run the following command to autogenerate CHANGELOG.rst:

    towncrier build --yes --version $VERSION`
  4. Push the created release branch prepare_$VERSION_release to your GitHub repo and open a PR for review.

Push the release:

Communication

We welcome community contributions to this repo. If you find problems, please open an issue or create a PR against the repo.

Need help or want to discuss Ansible SDK including the documentation? See our Community guide to learn how to join the conversation!

License

See LICENSE to see the full text.