From 4074cb7d6ab932e793d69acb25f47748c8900ee2 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Thu, 6 Dec 2018 12:27:23 -0600 Subject: [PATCH] ceph-volume: create 12GB devices with virtualbox This increases the size of the HDD devices that virtualbox creates so that they can pass the validator for filestore single type tests locally. Signed-off-by: Andrew Schoen --- src/ceph-volume/ceph_volume/tests/functional/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ceph-volume/ceph_volume/tests/functional/Vagrantfile b/src/ceph-volume/ceph_volume/tests/functional/Vagrantfile index 0f90faf67dd78..76eb8f0d8643c 100644 --- a/src/ceph-volume/ceph_volume/tests/functional/Vagrantfile +++ b/src/ceph-volume/ceph_volume/tests/functional/Vagrantfile @@ -350,7 +350,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| (0..2).each do |d| vb.customize ['createhd', '--filename', "disk-#{i}-#{d}", - '--size', '11000'] unless File.exist?("disk-#{i}-#{d}.vdi") + '--size', '12000'] unless File.exist?("disk-#{i}-#{d}.vdi") vb.customize ['storageattach', :id, '--storagectl', 'OSD Controller', '--port', 3 + d, -- 2.39.5