Skip to content

Commit

Permalink
Added 4G memory for worker machine to prevent OOM errors when booting…
Browse files Browse the repository at this point in the history
… OSIE
  • Loading branch information
mrmrcoleman committed Jun 23, 2020
1 parent 4e59b92 commit 8322fcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/vagrant/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ Vagrant.configure('2') do |config|
auto_config: false

worker.vm.provider :libvirt do |lv|
lv.memory = 1*1024
lv.memory = 4*1024
lv.cpus = 1
lv.boot 'network'
lv.mgmt_attach = false
end

worker.vm.provider :virtualbox do |vb, worker|
worker.vm.box = 'generic/alpine38'
vb.memory = 1*1024
vb.memory = 4*1024
vb.cpus = 1
vb.gui = true
vb.customize [
Expand Down

0 comments on commit 8322fcd

Please sign in to comment.