ansible.cfg 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. forks = 20
  12. host_key_checking = False
  13. retry_files_enabled = False
  14. retry_files_save_path = ~/ansible-installer-retries
  15. nocows = True
  16. remote_user = root
  17. roles_path = roles/
  18. gathering = smart
  19. fact_caching = jsonfile
  20. fact_caching_connection = $HOME/ansible/facts
  21. fact_caching_timeout = 600
  22. callback_whitelist = profile_tasks
  23. inventory_ignore_extensions = secrets.py, .pyc, .cfg, .crt
  24. # work around privilege escalation timeouts in ansible:
  25. timeout = 30
  26. # Uncomment to use the provided BYO inventory
  27. #hostfile = inventory/byo/hosts
  28. # Uncomment to use the provided GCE dynamic inventory script
  29. #hostfile = inventory/gce/gce.py
  30. # Uncomment to use the provided AWS dynamic inventory script
  31. #hostfile = inventory/aws/ec2.py
  32. # Additional ssh options for OpenShift Ansible
  33. [ssh_connection]
  34. pipelining = True
  35. ssh_args = -o ControlMaster=auto -o ControlPersist=600s
  36. timeout = 10
  37. # shorten the ControlPath which is often too long; when it is,
  38. # ssh connection reuse silently fails, making everything slower.
  39. control_path = %(directory)s/%%h-%%r