From 8264a88dea342e4a464b6b80770ed1e5c0aa552c Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Fri, 23 Oct 2015 12:37:42 +0200 Subject: [PATCH] openstack: revert to zero volumes default Volumes are rarely needed, having no volumes by default is sane. Signed-off-by: Loic Dachary --- docs/siteconfig.rst | 2 +- teuthology/config.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/siteconfig.rst b/docs/siteconfig.rst index 9eb70bb4a..2c2b175bd 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 9ffa1f2b5..2a76f266b 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, }, }, } -- 2.47.3