From d5e5700fabd84844fb480a8b1e11822690de3230 Mon Sep 17 00:00:00 2001
From: James McCarthy <james.m.mccarthy@oracle.com>
Date: Wed, 21 Sep 2016 10:53:49 +0100
Subject: [PATCH] Remove ansible serial: option for haproxy and rabbitmq.

By having serial in site.yml for these roles will mean (particularly
during an upgrade) that tasks can be executed out of the intended
order across hosts, leading to unexpected results.

Change-Id: I44f0c66c445d853a2e4af69119562f13b4424936
Closes-Bug: #1626096
---
 ansible/site.yml | 2 --
 1 file changed, 2 deletions(-)

diff --git a/ansible/site.yml b/ansible/site.yml
index e2816e402..e823941e6 100644
--- a/ansible/site.yml
+++ b/ansible/site.yml
@@ -46,7 +46,6 @@
         when: enable_telegraf | bool }
 
 - hosts: haproxy
-  serial: '{{ serial|default("0") }}'
   roles:
     - { role: haproxy,
         tags: haproxy,
@@ -91,7 +90,6 @@
         when: enable_multipathd | bool }
 
 - hosts: rabbitmq
-  serial: '{{ serial|default("0") }}'
   roles:
     - { role: rabbitmq,
         tags: rabbitmq,
-- 
GitLab