mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
5.3 KiB
ReStructuredText
129 lines
5.3 KiB
ReStructuredText
11 years ago
|
Developing Plugins
|
||
13 years ago
|
==================
|
||
|
|
||
11 years ago
|
.. contents::
|
||
|
:depth: 2
|
||
|
|
||
11 years ago
|
Ansible is pluggable in a lot of other ways separate from inventory scripts and callbacks. Many of these features are there to cover fringe use cases and are infrequently needed, and others are pluggable simply because they are there to implement core features
|
||
|
in ansible and were most convenient to be made pluggable.
|
||
13 years ago
|
|
||
11 years ago
|
This section will explore these features, though they are generally not common in terms of things people would look to extend quite
|
||
|
as often.
|
||
12 years ago
|
|
||
11 years ago
|
.. _developing_connection_type_plugins:
|
||
|
|
||
12 years ago
|
Connection Type Plugins
|
||
|
-----------------------
|
||
|
|
||
11 years ago
|
By default, ansible ships with a 'paramiko' SSH, native ssh (just called 'ssh'), and 'local' connection type, and an accelerated connection type named 'fireball' -- there are also some minor players like 'chroot' and 'jail'. All of these can be used
|
||
12 years ago
|
in playbooks and with /usr/bin/ansible to decide how you want to talk to remote machines. The basics of these connection types
|
||
|
are covered in the 'getting started' section. Should you want to extend Ansible to support other transports (SNMP? Message bus?
|
||
|
Carrier Pigeon?) it's as simple as copying the format of one of the existing modules and dropping it into the connection plugins
|
||
12 years ago
|
directory. The value of 'smart' for a connection allows selection of paramiko or openssh based on system capabilities, and chooses
|
||
|
'ssh' if OpenSSH supports ControlPersist, in Ansible 1.2.1 an later. Previous versions did not support 'smart'.
|
||
12 years ago
|
|
||
11 years ago
|
More documentation on writing connection plugins is pending, though you can jump into lib/ansible/runner/connection_plugins and figure things out pretty easily.
|
||
11 years ago
|
|
||
11 years ago
|
.. _developing_lookup_plugins:
|
||
|
|
||
12 years ago
|
Lookup Plugins
|
||
|
--------------
|
||
|
|
||
12 years ago
|
Language constructs like "with_fileglob" and "with_items" are implemented via lookup plugins. Just like other plugin types, you can write your own.
|
||
|
|
||
11 years ago
|
More documentation on writing connection plugins is pending, though you can jump into lib/ansible/runner/lookup_plugins and figure
|
||
|
things out pretty easily.
|
||
|
|
||
11 years ago
|
.. _developing_vars_plugins:
|
||
|
|
||
12 years ago
|
Vars Plugins
|
||
|
------------
|
||
|
|
||
|
Playbook constructs like 'host_vars' and 'group_vars' work via 'vars' plugins. They inject additional variable
|
||
|
data into ansible runs that did not come from an inventory, playbook, or command line. Note that variables
|
||
|
can also be returned from inventory, so in most cases, you won't need to write or understand vars_plugins.
|
||
|
|
||
11 years ago
|
More documentation on writing connection plugins is pending, though you can jump into lib/ansible/inventory/vars_plugins and figure
|
||
|
things out pretty easily.
|
||
|
|
||
|
If you find yourself wanting to write a vars_plugin, it's more likely you should write an inventory script instead.
|
||
|
|
||
11 years ago
|
.. _developing_filter_plugins:
|
||
|
|
||
12 years ago
|
Filter Plugins
|
||
|
--------------
|
||
|
|
||
11 years ago
|
If you want more Jinja2 filters available in a Jinja2 template (filters like to_yaml and to_json are provided by default), they can be extended by writing a filter plugin. Most of the time, when someone comes up with an idea for a new filter they would like to make available in a playbook, we'll just include them in 'core.py' instead.
|
||
|
|
||
|
Jump into lib/ansible/runner/filter_plugins/ for details.
|
||
|
|
||
11 years ago
|
.. _developing_callbacks:
|
||
11 years ago
|
|
||
|
Callbacks
|
||
|
---------
|
||
|
|
||
|
Callbacks are one of the more interesting plugin types. Adding additional callback plugins to Ansible allows for adding new behaviors when responding to events.
|
||
|
|
||
11 years ago
|
.. _callback_examples:
|
||
|
|
||
11 years ago
|
Examples
|
||
|
++++++++
|
||
|
|
||
|
Example callbacks are shown `in github in the callbacks directory <https://github.com/ansible/ansible/tree/devel/plugins/callbacks>_`.
|
||
|
|
||
|
The 'log_plays' callback is an example of how to intercept playbook events to a log file, and the 'mail' callback sends email
|
||
|
when playbooks complete.
|
||
|
|
||
|
The 'osx_say' callback provided is particularly entertaining -- it will respond with computer synthesized speech on OS X in relation
|
||
|
to playbook events, and is guaranteed to entertain and/or annoy coworkers.
|
||
|
|
||
11 years ago
|
.. _configuring_callbacks:
|
||
|
|
||
11 years ago
|
Configuring
|
||
|
+++++++++++
|
||
|
|
||
|
To active a callback drop it in a callback directory as configured in ansible.cfg.
|
||
|
|
||
11 years ago
|
.. _callback_development:
|
||
|
|
||
11 years ago
|
Development
|
||
|
+++++++++++
|
||
|
|
||
|
More information will come later, though see the source of any of the existing callbacks and you should be able to get started quickly.
|
||
|
They should be reasonably self explanatory.
|
||
|
|
||
11 years ago
|
.. _distributing_plugins:
|
||
12 years ago
|
|
||
|
Distributing Plugins
|
||
|
--------------------
|
||
|
|
||
|
Plugins are loaded from both Python's site_packages (those that ship with ansible) and a configured plugins directory, which defaults
|
||
|
to /usr/share/ansible/plugins, in a subfolder for each plugin type::
|
||
|
|
||
|
* action_plugins
|
||
|
* lookup_plugins
|
||
|
* callback_plugins
|
||
|
* connection_plugins
|
||
12 years ago
|
* filter_plugins
|
||
|
* vars_plugins
|
||
12 years ago
|
|
||
|
To change this path, edit the ansible configuration file.
|
||
|
|
||
|
In addition, plugins can be shipped in a subdirectory relative to a top-level playbook, in folders named the same as indicated above.
|
||
|
|
||
13 years ago
|
.. seealso::
|
||
|
|
||
|
:doc:`modules`
|
||
|
List of built-in modules
|
||
11 years ago
|
:doc:`developing_api`
|
||
|
Learn about the Python API for task execution
|
||
|
:doc:`developing_inventory`
|
||
|
Learn about how to develop dynamic inventory sources
|
||
|
:doc:`developing_modules`
|
||
|
Learn about how to write Ansible modules
|
||
|
`Mailing List <http://groups.google.com/group/ansible-devel>`_
|
||
|
The development mailing list
|
||
13 years ago
|
`irc.freenode.net <http://irc.freenode.net>`_
|
||
|
#ansible IRC chat channel
|
||
13 years ago
|
|