From b21ac6e66f049c7448cf6df78434b68ffb1303c7 Mon Sep 17 00:00:00 2001 From: David Galloway Date: Tue, 15 Aug 2017 10:45:46 -0400 Subject: [PATCH] downburst: Decrease disk size to 100GB The first VPS on every VPSHOST runs off the VPSHOST root drive. Because of this, the root drive is filling up due to the addition of another OSD drive: https://github.com/ceph/teuthology/pull/1099 This not only results in nagios alerts but could also result in needless job failures. OSD drives/partitions are already only 100G on smithi so this should be fine. Signed-off-by: David Galloway --- teuthology/provision/downburst.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/provision/downburst.py b/teuthology/provision/downburst.py index ed6755f623..fdb23af434 100644 --- a/teuthology/provision/downburst.py +++ b/teuthology/provision/downburst.py @@ -170,7 +170,7 @@ class Downburst(object): 'distro': os_type, 'distroversion': self.os_version, 'additional-disks': 4, - 'additional-disks-size': '200G', + 'additional-disks-size': '100G', 'arch': 'x86_64', } fqdn = self.name.split('@')[1] -- 2.39.5