From 4084586f8a4614181d885c7d7b8195a401c75ac6 Mon Sep 17 00:00:00 2001 From: Roberto Ciatti Date: Wed, 29 Jul 2020 16:17:14 +0200 Subject: [PATCH] Start vms with async Add the async to the ansible tasks starting vms, to have all vms starting in parallel Signed-off-by: Roberto Ciatti --- upi/ovirt/masters.yml | 2 ++ upi/ovirt/workers.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/upi/ovirt/masters.yml b/upi/ovirt/masters.yml index 283a2bd41c..bd99d41644 100644 --- a/upi/ovirt/masters.yml +++ b/upi/ovirt/masters.yml @@ -18,3 +18,5 @@ with_items: - "{{ vms }}" when: item.ocp_type == 'master' + async: 60 + poll: 0 diff --git a/upi/ovirt/workers.yml b/upi/ovirt/workers.yml index fff3d1f0fe..08c90354e8 100644 --- a/upi/ovirt/workers.yml +++ b/upi/ovirt/workers.yml @@ -18,3 +18,5 @@ with_items: - "{{ vms }}" when: item.ocp_type == 'worker' + async: 60 + poll: 0