From 6059d47383ab79dff84b495588a65cfafb31132a Mon Sep 17 00:00:00 2001 From: Carlos Camacho Date: Wed, 30 Mar 2016 09:17:44 +0000 Subject: [PATCH] Overcloud is not able to deploy with the default 4GB of RAM using instack-undercloud When deploying the overcloud with the default value of 4GB of RAM the overcloud fails throwing "Cannot allocate memory" errors. By increasing the default memory to 5GB the error is solved in instack-undercloud Change-Id: I29036edeebefc1959643a04c5396e72863fdca5f Closes-Bug: #1563750 (cherry picked from commit 2dec7d7521799c0323d076cd66ba71ebb444c706) --- scripts/instack-virt-setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/instack-virt-setup b/scripts/instack-virt-setup index a65389db6..048ac533e 100755 --- a/scripts/instack-virt-setup +++ b/scripts/instack-virt-setup @@ -86,7 +86,7 @@ export NODE_COUNT=${NODE_COUNT:-2} export NODE_CNT=$NODE_COUNT export NODE_ARCH=x86_64 -export NODE_MEM=${NODE_MEM:-4096} +export NODE_MEM=${NODE_MEM:-5120} export NODE_CPU=${NODE_CPU:-1}