Browse Source

fix(vagrant): sets video RAM to 8 MB, avoids large default (256) (#4230)

pull/4248/head
Peter Metz 5 years ago
committed by Kubernetes Prow Robot
parent
commit
94892ab3a4
1 changed files with 1 additions and 0 deletions
  1. 1
      Vagrantfile

1
Vagrantfile

@ -120,6 +120,7 @@ Vagrant.configure("2") do |config|
vb.cpus = $vm_cpus vb.cpus = $vm_cpus
vb.gui = $vm_gui vb.gui = $vm_gui
vb.linked_clone = true vb.linked_clone = true
vb.customize ["modifyvm", :id, "--vram", "8"] # ubuntu defaults to 256 MB which is a waste of precious RAM
end end
node.vm.provider :libvirt do |lv| node.vm.provider :libvirt do |lv|

Loading…
Cancel
Save