]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
openstack: revert to zero volumes default 665/head
authorLoic Dachary <ldachary@redhat.com>
Fri, 23 Oct 2015 10:37:42 +0000 (12:37 +0200)
committerLoic Dachary <ldachary@redhat.com>
Fri, 23 Oct 2015 19:29:26 +0000 (21:29 +0200)
Volumes are rarely needed, having no volumes by default is sane.

Signed-off-by: Loic Dachary <ldachary@redhat.com>
docs/siteconfig.rst
teuthology/config.py

index 9eb70bb4a43ae0cc936234af2ec1103a86964b57..2c2b175bdeeab71bd71bc12639ad0f34409475e2 100644 (file)
@@ -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
         #
index 9ffa1f2b5d84316d5b21c7b99cf5400940acbf6e..2a76f266b6262c570af32f8ac959b1e4c6d6a1d1 100644 (file)
@@ -160,8 +160,8 @@ class TeuthologyConfig(YamlConfig):
                 'cpus': 1,
             },
             'volumes': {
-                'count': 3,
-                'size': 10,
+                'count': 0,
+                'size': 1,
             },
         },
     }