Ansible action plugin to template arbitrary json ini yaml data
Go to file
Kevin Carter aa69b10a1a Add the Ansible human_log call back plugin
This change implements the human_log callback plugin within our plugins
repo. A v1/2 shim has been added as the base entry point to ensure the
callback plugin, if whitelisted, supports both Ansible V1 and V2.

Change-Id: Idad2623eeb7f73e20fe92d9e18cd99e45bc4b64f
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
2016-06-30 13:58:49 -05:00
action Added option to support case-insensitive keys 2016-04-21 16:09:18 -05:00
callback Add the Ansible human_log call back plugin 2016-06-30 13:58:49 -05:00
doc [DOCS] Cleanup the role docs for consistency and clarity 2016-03-07 17:38:19 -05:00
filter Created deprecation filter 2016-02-29 15:20:34 -06:00
library Optionally include image properties 2016-06-11 22:17:43 -05:00
lookup Merge "Update py_pkgs.py to support ansible v2.1" 2016-04-11 21:10:58 +00:00
meta first commit 2016-01-25 18:07:53 -06:00
releasenotes Merge "Adjust release note for config template" 2016-05-04 20:30:49 +00:00
.gitignore Add .swp files to .gitignore 2016-05-04 15:22:11 +01:00
.gitreview Updated repo for new org 2016-01-27 10:31:29 -06:00
CONTRIBUTING.rst [DOCS] Cleanup the role docs for consistency and clarity 2016-03-07 17:38:19 -05:00
LICENSE Update LICENSE file 2016-02-01 16:47:07 +00:00
README.rst [DOCS] Cleanup the role docs for consistency and clarity 2016-03-07 17:38:19 -05:00
dev-requirements.txt first commit 2016-01-25 18:07:53 -06:00
other-requirements.txt Add dependencies for paramiko 2.0 2016-05-03 08:57:43 +01:00
run_tests.sh Add dependencies for paramiko 2.0 2016-05-03 08:57:43 +01:00
setup.cfg first commit 2016-01-25 18:07:53 -06:00
setup.py first commit 2016-01-25 18:07:53 -06:00
test-requirements.txt Pin test-requirements to match OpenStack requirements 2016-06-17 15:45:27 +00:00
tox.ini Add reno scaffolding for release notes management 2016-05-02 10:45:15 -04:00

README.rst

OpenStack-Ansible Plugins

These are the plugins the OpenStack-Ansible deployment project relies on. The plugins can be added to any Ansible project by simply cloning this repository and setting up the ansible.cfg file to point at them as additional plugins for your project.

Actions

This project provides the Ansible modules:

  • config_template
  • dist_sort
  • glance
  • keystone
  • memcached
  • name2int
  • neutron
  • provider_networks

Filters

This project provides the Ansible Jinja2 filters:

  • bit_length_power_of_2
  • netloc
  • netloc_no_port
  • netorigin
  • string_2_int
  • pip_requirement_names
  • pip_constraint_update
  • splitlines
  • filtered_list
  • git_link_parse
  • git_link_parse_name
  • deprecated

Lookups

This project provides the lookup:

  • with_py_pkgs

Callbacks

This project provides an Ansible callback that will report task profiling timings

Example ansible.cfg file

[defaults]
lookup_plugins = /etc/ansible/plugins/lookups
filter_plugins = /etc/ansible/plugins/filters
action_plugins = /etc/ansible/plugins/actions
library = /etc/ansible/plugins/library

Example role requirement overload for automatic plugin download

The Ansible role requirement file can be used to overload the ansible- galaxy command to automatically fetch the plugins for you in a given project. To do this add the following lines to your ansible-role- requirements.yml file.

- name: plugins
  src: https://github.com/openstack/openstack-ansible-plugins
  path: /etc/ansible
  scm: git
  version: master