[vbox] Increasing memory/disk size in vbox scripts.

Closes-bug #1253097

When controller is deployed with Ceph,
768Mb of RAM is not enough. So we have
to increase the default amount of memory
required to run demo environment.
Also, as we now give more space on
controllers for root partition, increased
default disk size as well.

Change-Id: I791f26c94c54ce6be48116fc2eaa9e6464da5738
This commit is contained in:
Mike Scherbakov 2013-12-03 20:01:02 +04:00
parent 85f1db6d1c
commit 3dedb1b78d
1 changed files with 5 additions and 5 deletions

View File

@ -59,10 +59,10 @@ vm_slave_cpu_cores=1
# This section allows you to define RAM size in MB for each slave node.
# Keep in mind that PXE boot might not work correctly with values lower than 768.
# You can specify memory size for the specific slaves, other will get default vm_slave_memory_default
vm_slave_memory_default=768
vm_slave_memory_mb[1]=768 # for controller node 768 MB should be sufficient
vm_slave_memory_default=1024
vm_slave_memory_mb[1]=1024 # for controller node at least 1Gb is required if you also run Ceph on it
vm_slave_memory_mb[2]=1024 # for compute node 1GB is recommended, otherwise VM instances in OpenStack may not boot
vm_slave_memory_mb[3]=768 # for a dedicated Cinder node 768 MB should be sufficient
vm_slave_memory_mb[3]=1024 # for dedicated Cinder, 768Mb is OK, but Ceph needs 1Gb minimum
# Within demo cluster created by this script, all slaves (controller
# and compute nodes) will have identical disk configuration. Each
@ -70,6 +70,6 @@ vm_slave_memory_mb[3]=768 # for a dedicated Cinder node 768 MB should be suffi
# dialog you will be able to allocate the whole disk or it's part for
# operating system (Base OS), VMs (Virtual Storage), Ceph or other function,
# depending on the roles applied to the server.
vm_slave_first_disk_mb=32768
vm_slave_second_disk_mb=32768
vm_slave_first_disk_mb=65536
vm_slave_second_disk_mb=65536
vm_slave_third_disk_mb=65536