Skip to content

Commit

Permalink
Reduce VM resource allocation
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbrictson committed Dec 31, 2023
1 parent 3b93df3 commit c2e475e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@ VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = 'bento/ubuntu-22.10'

config.vm.boot_timeout = 600 # seconds
config.vm.provider 'virtualbox' do |vb|
vb.memory = 1024
vb.cpus = 1
end
config.ssh.insert_key = false
config.vm.provision "shell", inline: <<-SHELL
echo 'ClientAliveInterval 3' >> /etc/ssh/sshd_config
Expand Down

0 comments on commit c2e475e

Please sign in to comment.