ansible.cfg 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # config file for ansible -- http://ansible.com/
  2. # ==============================================
  3. # This config file provides examples for running
  4. # the OpenShift playbooks with the provided
  5. # inventory scripts.
  6. [defaults]
  7. # Set the log_path
  8. #log_path = /tmp/ansible.log
  9. # Additional default options for OpenShift Ansible
  10. callback_plugins = callback_plugins/
  11. filter_plugins = filter_plugins/
  12. lookup_plugins = lookup_plugins/
  13. library = library/
  14. forks = 20
  15. host_key_checking = False
  16. retry_files_enabled = False
  17. retry_files_save_path = ~/ansible-installer-retries
  18. nocows = True
  19. remote_user = root
  20. roles_path = roles/
  21. gathering = smart
  22. fact_caching = jsonfile
  23. fact_caching_connection = $HOME/ansible/facts
  24. fact_caching_timeout = 600
  25. callback_whitelist = profile_tasks
  26. inventory_ignore_extensions = secrets.py, .pyc, .cfg, .crt
  27. # work around privilege escalation timeouts in ansible:
  28. timeout = 30
  29. # Uncomment to use the provided example inventory
  30. #inventory = inventory/hosts.example
  31. [inventory]
  32. # fail more helpfully when the inventory file does not parse (Ansible 2.4+)
  33. unparsed_is_failed=true
  34. # Additional ssh options for OpenShift Ansible
  35. [ssh_connection]
  36. pipelining = True
  37. ssh_args = -o ControlMaster=auto -o ControlPersist=600s
  38. timeout = 10
  39. # shorten the ControlPath which is often too long; when it is,
  40. # ssh connection reuse silently fails, making everything slower.
  41. control_path = %(directory)s/%%h-%%r