From 3a0fbbeddb72942510048c482fe27c88f44a205b Mon Sep 17 00:00:00 2001 From: Joshua Schmid Date: Fri, 6 Dec 2019 15:44:47 +0100 Subject: [PATCH] mgr/ssh: increase disk size to 20G ceph-volume will only take disks > 5G Signed-off-by: Joshua Schmid --- src/pybind/mgr/cephadm/Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pybind/mgr/cephadm/Vagrantfile b/src/pybind/mgr/cephadm/Vagrantfile index e041afe11d6..5cb85f7aff4 100644 --- a/src/pybind/mgr/cephadm/Vagrantfile +++ b/src/pybind/mgr/cephadm/Vagrantfile @@ -17,8 +17,8 @@ Vagrant.configure("2") do |config| config.vm.define "osd#{i}" do |osd| osd.vm.hostname = "osd#{i}" osd.vm.provider :libvirt do |libvirt| - libvirt.storage :file, :size => '5G' - libvirt.storage :file, :size => '5G' + libvirt.storage :file, :size => '20G' + libvirt.storage :file, :size => '20G' end end end -- 2.39.5