f954bc0a5a
While `do` looks cleaner, forcing this extra option in ansible.cfg seems to be more invasive. It would be better to keep the traditional approach of `set dummy = ` instead.
15 lines
623 B
INI
15 lines
623 B
INI
[ssh_connection]
|
|
pipelining=True
|
|
ssh_args = -o ControlMaster=auto -o ControlPersist=30m -o ConnectionAttempts=100 -o UserKnownHostsFile=/dev/null
|
|
#control_path = ~/.ssh/ansible-%%r@%%h:%%p
|
|
[defaults]
|
|
host_key_checking=False
|
|
gathering = smart
|
|
fact_caching = jsonfile
|
|
fact_caching_connection = /tmp
|
|
stdout_callback = skippy
|
|
library = ./library
|
|
callback_whitelist = profile_tasks
|
|
roles_path = roles:$VIRTUAL_ENV/usr/local/share/kubespray/roles:$VIRTUAL_ENV/usr/local/share/ansible/roles:/usr/share/kubespray/roles
|
|
deprecation_warnings=False
|
|
inventory_ignore_extensions = ~, .orig, .bak, .ini, .cfg, .retry, .pyc, .pyo, .creds
|