Merge pull request #4471 from AkihiroSuda/vagrant-increase-mem

Vagrantfile: increase memory
This commit is contained in:
Wei Fu 2020-08-12 19:51:51 +08:00 committed by GitHub
commit e87c38ae05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

10
Vagrantfile vendored
View File

@ -18,13 +18,15 @@
# Vagrantfile for cgroup2 and SELinux # Vagrantfile for cgroup2 and SELinux
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
config.vm.box = "fedora/32-cloud-base" config.vm.box = "fedora/32-cloud-base"
memory = 4096
cpus = 2
config.vm.provider :virtualbox do |v| config.vm.provider :virtualbox do |v|
v.memory = 2048 v.memory = memory
v.cpus = 2 v.cpus = cpus
end end
config.vm.provider :libvirt do |v| config.vm.provider :libvirt do |v|
v.memory = 2048 v.memory = memory
v.cpus = 2 v.cpus = cpus
end end
# Disabled by default. To run: # Disabled by default. To run: