From 7bc4f939a406088d31d1a376ad2983645e6707f8 Mon Sep 17 00:00:00 2001
From: Jesse Pretorius <jesse.pretorius@rackspace.co.uk>
Date: Tue, 26 Jun 2018 09:48:03 +0100
Subject: [PATCH] MNAIO: Run each setup playbook individually

The documentation describes using each setup-*.yml playbook
individually. This helps to reduce the memory usage on the
deploy host and also makes the output more readable as you're
only having to read the output of a single meta-playbook when
looking at the task results. In this patch we make the setup
process use the same set of playbooks described in the docs.

Change-Id: I596ed599de2e4302a82f2401f8fdf57f97660060
---
 multi-node-aio/playbooks/deploy-osa.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/multi-node-aio/playbooks/deploy-osa.yml b/multi-node-aio/playbooks/deploy-osa.yml
index dd584661..52f62bf2 100644
--- a/multi-node-aio/playbooks/deploy-osa.yml
+++ b/multi-node-aio/playbooks/deploy-osa.yml
@@ -142,7 +142,7 @@
         - tmux new-session -d -s build-osa
         - tmux select-pane -t 0
         - tmux send-keys "ulimit -n 10240" C-m
-        - tmux send-keys "openstack-ansible setup-everything.yml" C-m
+        - tmux send-keys "openstack-ansible setup-hosts.yml setup-infrastructure.yml setup-openstack.yml" C-m
       when:
         - inventory_hostname == groups['deploy_hosts'][0]
         - run_osa | default(true) | bool