ansible.cfg 735 B

123456789101112131415161718192021222324
  1. # config file for ansible -- http://ansible.com/
  2. # ==============================================
  3. [defaults]
  4. ansible_user = openshift
  5. forks = 50
  6. # work around privilege escalation timeouts in ansible
  7. timeout = 30
  8. host_key_checking = false
  9. inventory = inventory
  10. inventory_ignore_extensions = secrets.py, .pyc, .cfg, .crt
  11. gathering = smart
  12. retry_files_enabled = false
  13. fact_caching = jsonfile
  14. fact_caching_connection = .ansible/cached_facts
  15. fact_caching_timeout = 900
  16. stdout_callback = skippy
  17. callback_whitelist = profile_tasks
  18. lookup_plugins = openshift-ansible-contrib/lookup_plugins
  19. [ssh_connection]
  20. ssh_args = -o ControlMaster=auto -o ControlPersist=900s -o GSSAPIAuthentication=no
  21. control_path = /var/tmp/%%h-%%r
  22. pipelining = True