Column is a thin wrapper on top of the Ansible API to serve as an entry point for other code when Ansible is needed. Because the Ansible internal API is not officially exposed and changes frequently, this wrapper can be used instead of touching Ansible directly so that any further Ansible API changes will only incur change in this module.
This module exposes two classes: column.APIRunner and column.SubprocessRunner
Both of these implement the API as described in column.Runner. Each runner exposes two public methods: run_playbook() and run_module().
Install with pip:
pip install column
and in your python code do:
from column import APIRunner
api_runner = APIRunner()
api_runner.run_module('localhost', remote_user=None)
python column/api/run.py
pip install uwsgi
uwsgi --socket 0.0.0.0:48620 --protocol=http -w column.api.wsgi
1. docker build -t column-image .
2. docker run -d -p 48620:48620 -v <playbook-dir>:<container-dir> column-image (the directory should contain the playbook file)
TBD
Column is still in alpha state, currently at version 0.5.2.
The Column project team welcomes contributions from the community. Before you start working with Column, please read our Developer Certificate of Origin. All contributions to this repository must be signed as described on that page. Your signature certifies that you wrote the patch or have the right to pass it on as an open-source patch. For more detailed information, refer to CONTRIBUTING.md.