Skip to content

Commit

Permalink
Added 4G memory for worker to prevent OOM errors when booting OSIE (t…
Browse files Browse the repository at this point in the history
…inkerbell#188)

Intended to address tinkerbell#181 by simply upping the amount of memory on the worker.
  • Loading branch information
mergify[bot] authored Jun 24, 2020
2 parents 4e59b92 + 8322fcd commit 09c2c91
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 09c2c91

Please sign in to comment.