From cbbd046a0f7338d6ea24dc8d816209832c70fc76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Tue, 11 Mar 2014 14:22:11 +0100 Subject: [PATCH] Add more tiny disks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Instead of having 5GB disks now we have 6 disks of 1GB per virtual machine, which is more than enough for testing. Signed-off-by: Sébastien Han --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index db450166b..44d5836ac 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -20,9 +20,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| osd.vm.hostname = "ceph-osd#{i}" osd.vm.network :private_network, ip: "192.168.0.10#{i}" osd.vm.network :private_network, ip: "192.168.0.20#{i}" - (0..2).each do |d| + (0..5).each do |d| osd.vm.provider :virtualbox do |vb| - vb.customize [ "createhd", "--filename", "disk-#{i}-#{d}", "--size", "5000" ] + vb.customize [ "createhd", "--filename", "disk-#{i}-#{d}", "--size", "1000" ] vb.customize [ "storageattach", :id, "--storagectl", "SATA Controller", "--port", 3+d, "--device", 0, "--type", "hdd", "--medium", "disk-#{i}-#{d}.vdi" ] end end