ansible.builtin.host_pinned strategy – Executes tasks on each host without interruption
Note
This strategy plugin is part of ansible-core
and included in all Ansible
installations. In most cases, you can use the short
plugin name
host_pinned
.
However, we recommend you use the Fully Qualified Collection Name (FQCN) ansible.builtin.host_pinned
for easy linking to the
plugin documentation and to avoid conflicting with other collections that may have
the same strategy plugin name.
New in Ansible 2.7
Synopsis
Task execution is as fast as possible per host in batch as defined by
serial
(default all). Ansible will not start a play for a host unless the play can be finished without interruption by tasks for another host, i.e. the number of hosts with an active play does not exceed the number of forks. Ansible will not wait for other hosts to finish the current task before queuing the next task for a host that has finished. Once a host is done with the play, it opens it’s slot to a new host that was waiting to start. Other than that, it behaves just like the “free” strategy.