You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ansible Project
I notice there is a config option to enable ansible to run in parallel (host_key_checking = False) however, this strikes me as an ssh option. I'm running playbooks over winrm and would like to know if there is a similar option here.
thanks!
Jordan Borean
unread,
Feb 28, 2020, 7:17:58 PM2/28/20
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ansible Project
host_key_checking has nothing to do with parallel runs so I'm not sure what you mean by that. By default Ansible will run on hosts in parallel up to the forks configured [1]. If you want to run multiple tasks at the same time the only real option is to use async with poll: 0 [2] so it runs in the background and Ansible continues onto the next task. This does have limitations and it makes it difficult to track the status or even the success of each task you run in async.