ansible.cfg 793 B

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