Skip to content

Commit

Permalink
Reduce RAM size of VMs
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Nov 28, 2014
1 parent d8dd592 commit 012fc62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vagrant/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
node_config.vm.network(:private_network,
:ip => "192.168.100.#{50 + index}")
node_config.vm.host_name = "node#{index}"
# node_config.vm.provider("virtualbox") do |virtual_box|
# virtual_box.memory = 2048
# end
node_config.vm.provider("virtualbox") do |virtual_box|
virtual_box.memory = 512
end
end
end
end

0 comments on commit 012fc62

Please sign in to comment.