diff options
author | 2013-10-02 09:37:19 -0400 | |
---|---|---|
committer | 2013-10-03 01:16:44 -0400 | |
commit | 793fbb775b5ec344434031647be2b5befe3159c8 (patch) | |
tree | 9b3081b9b31dc1f096c618de441bd8d94047c61f | |
parent | 45c125cd53f69a9ced0ed2841d86977a8bfdb88f (diff) | |
download | meta-cloud-services-793fbb775b5ec344434031647be2b5befe3159c8.tar.gz meta-cloud-services-793fbb775b5ec344434031647be2b5befe3159c8.tar.bz2 meta-cloud-services-793fbb775b5ec344434031647be2b5befe3159c8.zip |
openstack: compute node image free space and deployment
Various components (such as rabbitmq) have checks for minimum amounts
of free space on a image. If those checks fail, the service exits in
a hard to debug manner. To ensure that these services run, and meet
typical usage scenarios, we increase the free space in the image to 3G.
Finally, we inherit openstack-image-base, to trigger simple rootfs
configuration and deployment.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r-- | meta-openstack/recipes-extended/images/openstack-image-compute.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-openstack/recipes-extended/images/openstack-image-compute.bb b/meta-openstack/recipes-extended/images/openstack-image-compute.bb index 632b21b9..2ddce679 100644 --- a/meta-openstack/recipes-extended/images/openstack-image-compute.bb +++ b/meta-openstack/recipes-extended/images/openstack-image-compute.bb @@ -10,7 +10,10 @@ IMAGE_INSTALL = " \ IMAGE_FEATURES += "ssh-server-openssh" inherit core-image +inherit openstack-base -#IMAGE_ROOTFS_EXTRA_SPACE = "41943040" +# Ensure extra space for guest images, and rabbit MQ has a hard coded +# check for 2G of free space, so we use 3G as a starting point. +IMAGE_ROOTFS_EXTRA_SPACE = "3000000" ROOTFS_POSTPROCESS_COMMAND += "remove_packaging_data_files ; " |