ansible.cfg 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. Only global defaults are
  6. # left uncommented
  7. [defaults]
  8. # Add the roles directory to the roles path
  9. roles_path = roles/
  10. # Set the log_path
  11. log_path = /tmp/ansible.log
  12. forks = 10
  13. host_key_checking = False
  14. nocows = 1
  15. retry_files_enabled = False
  16. deprecation_warnings = False
  17. # Need to handle:
  18. # inventory - derive from OO_ANSIBLE_DIRECTORY env var
  19. # callback_plugins - derive from pkg_resource.resource_filename
  20. # private_key_file - prompt if missing
  21. # remote_tmp - set if provided by user (cli)
  22. # ssh_args - set if provided by user (cli)
  23. # control_path
  24. [inventory]
  25. # fail more helpfully when the inventory file does not parse (Ansible 2.4+)
  26. unparsed_is_failed=true
  27. # Additional ssh options for OpenShift Ansible
  28. [ssh_connection]
  29. # shorten the ControlPath which is often too long; when it is,
  30. # ssh connection reuse silently fails, making everything slower.
  31. control_path = %(directory)s/%%h-%%r