15 lines
645 B
INI
15 lines
645 B
INI
host_key_checking = False
|
|
# http://chrisbergeron.com/2018/06/08/ansible_performance_tuning/
|
|
gathering = smart
|
|
fact_caching = jsonfile
|
|
fact_caching_connection = var/tmp/.ansible_fact_cache
|
|
|
|
forks = 5
|
|
timeout = 90
|
|
# This sets the interval (in seconds) of Ansible internal processes polling each other. Lower values
|
|
# improve performance with large playbooks at the expense of extra CPU load. Higher values are more
|
|
# suitable for Ansible usage in automation scenarios, when UI responsiveness is not required but CPU usage
|
|
# might be a concern. Default corresponds to the value hardcoded in 2.1: was 1
|
|
internal_poll_interval=5
|
|
|