Reduce VM memory consumption

We now have 7 virtual machines in the Vagrant sandbox. This takes a lot
of memory. This might be a problem for some laptop and whon't help
testings.

Signed-off-by: Sébastien Han <sebastien.han@enovance.com>
pull/43/head
Sébastien Han 2014-03-14 10:47:06 +01:00
parent de78baebce
commit 8a9851a045
1 changed files with 7 additions and 0 deletions

7
Vagrantfile vendored
View File

@ -11,12 +11,18 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define :rgw do |rgw|
rgw.vm.network :private_network, ip: "192.168.0.2"
rgw.vm.host_name = "ceph-rgw"
rgw.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "192"]
end
end
(0..2).each do |i|
config.vm.define "mon#{i}" do |mon|
mon.vm.hostname = "ceph-mon#{i}"
mon.vm.network :private_network, ip: "192.168.0.1#{i}"
mon.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "192"]
end
end
end
@ -29,6 +35,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
osd.vm.provider :virtualbox do |vb|
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" ]
vb.customize ["modifyvm", :id, "--memory", "192"]
end
end
end