2013-09-30 01:10:28 +02:00
|
|
|
Python API
|
|
|
|
==========
|
2012-03-31 04:28:30 +02:00
|
|
|
|
2013-12-26 20:32:01 +01:00
|
|
|
.. contents:: Topics
|
|
|
|
|
2012-08-31 05:55:31 +02:00
|
|
|
There are several interesting ways to use Ansible from an API perspective. You can use
|
2013-10-05 19:50:53 +02:00
|
|
|
the Ansible python API to control nodes, you can extend Ansible to respond to various python events, you can
|
|
|
|
write various plugins, and you can plug in inventory data from external data sources. This document
|
|
|
|
covers the Runner and Playbook API at a basic level.
|
|
|
|
|
2013-10-06 03:19:19 +02:00
|
|
|
If you are looking to use Ansible programmatically from something other than Python, trigger events asynchronously,
|
2014-01-28 17:04:34 +01:00
|
|
|
or have access control and logging demands, take a look at :doc:`tower`
|
2013-10-05 19:50:53 +02:00
|
|
|
as it has a very nice REST API that provides all of these things at a higher level.
|
|
|
|
|
|
|
|
Ansible is written in its own API so you have a considerable amount of power across the board.
|
|
|
|
This chapter discusses the Python API.
|
2012-03-31 04:28:30 +02:00
|
|
|
|
2013-10-04 16:41:44 +02:00
|
|
|
.. _python_api:
|
|
|
|
|
2012-03-31 04:28:30 +02:00
|
|
|
Python API
|
|
|
|
----------
|
2012-03-08 19:36:47 +01:00
|
|
|
|
|
|
|
The Python API is very powerful, and is how the ansible CLI and ansible-playbook
|
2012-12-12 10:55:52 +01:00
|
|
|
are implemented.
|
2012-03-08 19:36:47 +01:00
|
|
|
|
|
|
|
It's pretty simple::
|
|
|
|
|
|
|
|
import ansible.runner
|
|
|
|
|
|
|
|
runner = ansible.runner.Runner(
|
|
|
|
module_name='ping',
|
|
|
|
module_args='',
|
|
|
|
pattern='web*',
|
|
|
|
forks=10
|
|
|
|
)
|
|
|
|
datastructure = runner.run()
|
|
|
|
|
|
|
|
The run method returns results per host, grouped by whether they
|
|
|
|
could be contacted or not. Return types are module specific, as
|
2013-12-21 08:06:38 +01:00
|
|
|
expressed in the :doc:`modules` documentation.::
|
2012-03-08 19:36:47 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
"dark" : {
|
|
|
|
"web1.example.com" : "failure message"
|
2013-04-11 06:43:16 +02:00
|
|
|
},
|
2012-03-08 19:36:47 +01:00
|
|
|
"contacted" : {
|
|
|
|
"web2.example.com" : 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
A module can return any type of JSON data it wants, so Ansible can
|
|
|
|
be used as a framework to rapidly build powerful applications and scripts.
|
|
|
|
|
2013-10-04 16:41:44 +02:00
|
|
|
.. _detailed_api_example:
|
|
|
|
|
2012-03-09 13:42:53 +01:00
|
|
|
Detailed API Example
|
|
|
|
````````````````````
|
|
|
|
|
|
|
|
The following script prints out the uptime information for all hosts::
|
|
|
|
|
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
import ansible.runner
|
|
|
|
import sys
|
|
|
|
|
|
|
|
# construct the ansible runner and execute on all hosts
|
|
|
|
results = ansible.runner.Runner(
|
|
|
|
pattern='*', forks=10,
|
2012-08-25 01:33:14 +02:00
|
|
|
module_name='command', module_args='/usr/bin/uptime',
|
2012-03-09 13:42:53 +01:00
|
|
|
).run()
|
|
|
|
|
|
|
|
if results is None:
|
|
|
|
print "No hosts found"
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
print "UP ***********"
|
|
|
|
for (hostname, result) in results['contacted'].items():
|
|
|
|
if not 'failed' in result:
|
|
|
|
print "%s >>> %s" % (hostname, result['stdout'])
|
|
|
|
|
|
|
|
print "FAILED *******"
|
|
|
|
for (hostname, result) in results['contacted'].items():
|
|
|
|
if 'failed' in result:
|
|
|
|
print "%s >>> %s" % (hostname, result['msg'])
|
|
|
|
|
|
|
|
print "DOWN *********"
|
|
|
|
for (hostname, result) in results['dark'].items():
|
|
|
|
print "%s >>> %s" % (hostname, result)
|
|
|
|
|
|
|
|
Advanced programmers may also wish to read the source to ansible itself, for
|
|
|
|
it uses the Runner() API (with all available options) to implement the
|
|
|
|
command line tools ``ansible`` and ``ansible-playbook``.
|
|
|
|
|
2013-10-05 18:31:16 +02:00
|
|
|
.. seealso::
|
|
|
|
|
|
|
|
:doc:`developing_inventory`
|
|
|
|
Developing dynamic inventory integrations
|
|
|
|
:doc:`developing_modules`
|
|
|
|
How to develop modules
|
|
|
|
:doc:`developing_plugins`
|
|
|
|
How to develop plugins
|
|
|
|
`Development Mailing List <http://groups.google.com/group/ansible-devel>`_
|
|
|
|
Mailing list for development topics
|
|
|
|
`irc.freenode.net <http://irc.freenode.net>`_
|
|
|
|
#ansible IRC chat channel
|
|
|
|
|