ansible.cfg 845 B

12345678910111213141516171819202122232425262728293031
  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. # Uncomment to use the provided BYO inventory
  17. #hostfile = inventory/byo/hosts
  18. # Uncomment to use the provided GCE dynamic inventory script
  19. #hostfile = inventory/gce/gce.py
  20. # Uncomment to use the provided AWS dynamic inventory script
  21. #hostfile = inventory/aws/ec2.py
  22. # Additional ssh options for OpenShift Ansible
  23. [ssh_connection]
  24. pipelining = True