Commit 4af809f50a45c0273c6238b6be23c531d2c81a92
1 parent
b6059525
Exists in
master
and in
90 other branches
integration: increase developer VM resources
Since currently we have a lot of things running on it, the default amount of RAM is not enough. While we are at it let's also give it a little more processing power.
Showing
1 changed file
with
4 additions
and
0 deletions
Show diff stats
Vagrantfile
... | ... | @@ -20,6 +20,10 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| |
20 | 20 | end |
21 | 21 | config.vm.define 'integration' do |integration| |
22 | 22 | integration.vm.network 'private_network', ip: ips['integration'] |
23 | + integration.vm.provider "virtualbox" do |v| | |
24 | + v.memory = 1024 | |
25 | + v.cpus = 2 | |
26 | + end | |
23 | 27 | end |
24 | 28 | config.vm.define 'email' do |email| |
25 | 29 | email.vm.network 'private_network', ip: ips['email'] | ... | ... |