From a1c040443e394fa605f76f6232f0bbe791e67d94 Mon Sep 17 00:00:00 2001 From: Jonathan Rosser Date: Sun, 26 May 2019 22:10:27 +0100 Subject: [PATCH] Correct os-cinder-install task serialisation The code should run two batches, a single host followed by all remaining hosts by passing a list ['1', '100%'] as the serial parameter. The list was not initialised correctly. Change-Id: I99b5e9bd088af3633a4f186af6d2081c632ccf4f --- playbooks/os-cinder-install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/os-cinder-install.yml b/playbooks/os-cinder-install.yml index c879673ce1..b1436d2cdd 100644 --- a/playbooks/os-cinder-install.yml +++ b/playbooks/os-cinder-install.yml @@ -25,7 +25,7 @@ include: common-playbooks/cinder.yml vars: cinder_hosts: "cinder_volume:!cinder_scheduler:!cinder_api" - cinder_serial: "{{ cinder_backend_serial | default('1', '100%') }}" + cinder_serial: "{{ cinder_backend_serial | default(['1', '100%']) }}"