From: Loic Dachary Date: Fri, 23 Oct 2015 10:37:42 +0000 (+0200) Subject: openstack: revert to zero volumes default X-Git-Tag: 1.1.0~785^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=8264a88dea342e4a464b6b80770ed1e5c0aa552c;p=teuthology.git openstack: revert to zero volumes default Volumes are rarely needed, having no volumes by default is sane. Signed-off-by: Loic Dachary --- diff --git a/docs/siteconfig.rst b/docs/siteconfig.rst index 9eb70bb4a4..2c2b175bde 100644 --- a/docs/siteconfig.rst +++ b/docs/siteconfig.rst @@ -185,7 +185,7 @@ Here is a sample configuration with many of the options set and documented:: # The number of volumes # - count: 3 + count: 0 # The size of each volume, in GB # diff --git a/teuthology/config.py b/teuthology/config.py index 9ffa1f2b5d..2a76f266b6 100644 --- a/teuthology/config.py +++ b/teuthology/config.py @@ -160,8 +160,8 @@ class TeuthologyConfig(YamlConfig): 'cpus': 1, }, 'volumes': { - 'count': 3, - 'size': 10, + 'count': 0, + 'size': 1, }, }, }