openstack-ansible/playbooks/ansible.cfg
kevin 330f8613ee Create config_template plugin
The change introduces the `config_template` plugin within our ansible
source tree with the intention to replace the `copy_update` module with
a proper ansible action plugin.

The new module implements a method to overwrite and add items into
configuration files without the need to specify all items in templates
as default variables.

The plugin currently supports ini, json, and yaml files and can be
a drop in replacement for the current template and copy_update
usage as it pertains to the various configuration files that we need
for OpenStack.

Partially implements: blueprint tunable-openstack-configuration

Change-Id: Ice1d3e6b99976c0df780f2a1e9c3e6244c3e0114
2015-09-09 08:30:02 +00:00

20 lines
420 B
INI

[defaults]
# Additional plugins
lookup_plugins = plugins/lookups
filter_plugins = plugins/filters
action_plugins = plugins/actions
gathering = smart
hostfile = inventory
host_key_checking = False
# Set color options
nocolor = 0
# SSH timeout
timeout = 120
[ssh_connection]
pipelining = True
ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o TCPKeepAlive=yes -o ServerAliveInterval=5 -o ServerAliveCountMax=3