From 6bcd8cad16c39dd8596d654eb4587e848d0db1fe Mon Sep 17 00:00:00 2001 From: Peter Penchev Date: Fri, 12 Jan 2018 23:49:04 +0200 Subject: [PATCH] Bump the Cinder LVM backing file size to 24Gb. This follows a change made to devstack-gate in commit 841ebc3 to allow tempest to succeed even if it happens to run several volume tests in parallel. Right now it's possible for a tempest-full test (run without devstack-gate) to fail with an "Insufficient free virtual space" error in the cinder-scheduler log. Suggested by: Clark Boylan Closes-Bug: 1743597 Change-Id: I16ccb9976d1bc7c9f56a6a4d73e35042a5867ef9 --- doc/source/configuration.rst | 2 +- stackrc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/configuration.rst b/doc/source/configuration.rst index d932d8cd86..49cad05554 100644 --- a/doc/source/configuration.rst +++ b/doc/source/configuration.rst @@ -667,7 +667,7 @@ with ``VOLUME_BACKING_FILE_SIZE``. VOLUME_GROUP_NAME="stack-volumes" VOLUME_NAME_PREFIX="volume-" - VOLUME_BACKING_FILE_SIZE=10250M + VOLUME_BACKING_FILE_SIZE=24G Keystone diff --git a/stackrc b/stackrc index 286a04d3fe..d7ebdd87d4 100644 --- a/stackrc +++ b/stackrc @@ -762,8 +762,8 @@ for image_url in ${IMAGE_URLS//,/ }; do fi done -# 10Gb default volume backing file size -VOLUME_BACKING_FILE_SIZE=${VOLUME_BACKING_FILE_SIZE:-10250M} +# 24Gb default volume backing file size +VOLUME_BACKING_FILE_SIZE=${VOLUME_BACKING_FILE_SIZE:-24G} # Prefixes for volume and instance names VOLUME_NAME_PREFIX=${VOLUME_NAME_PREFIX:-volume-}