From: Joshua Schmid Date: Fri, 6 Dec 2019 14:44:47 +0000 (+0100) Subject: mgr/ssh: increase disk size to 20G X-Git-Tag: v15.1.1~612^2~8 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3a0fbbeddb72942510048c482fe27c88f44a205b;p=ceph.git mgr/ssh: increase disk size to 20G ceph-volume will only take disks > 5G Signed-off-by: Joshua Schmid --- diff --git a/src/pybind/mgr/cephadm/Vagrantfile b/src/pybind/mgr/cephadm/Vagrantfile index e041afe11d6e..5cb85f7aff45 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