From aa575c13189d7dce33a9210a3ac18bd6e0a61370 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Sun, 21 Aug 2011 15:14:02 -0700 Subject: [PATCH] rbd: make default image 10G instead of 1G --- teuthology/task/rbd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/rbd.py b/teuthology/task/rbd.py index 87af7577240de..ed8062ea7dddf 100644 --- a/teuthology/task/rbd.py +++ b/teuthology/task/rbd.py @@ -37,7 +37,7 @@ def create_image(ctx, config): if properties is None: properties = {} name = properties.get('image_name', default_image_name(role)) - size = properties.get('image_size', 1024) + size = properties.get('image_size', 10240) (remote,) = ctx.cluster.only(role).remotes.keys() log.info('Creating image {name} with size {size}'.format(name=name, size=size)) -- 2.39.5