Skip to content

Instantly share code, notes, and snippets.

@invidian
Created May 21, 2020 09:46
Show Gist options
  • Save invidian/794059d3377c077c27563e61bb600d10 to your computer and use it in GitHub Desktop.
Save invidian/794059d3377c077c27563e61bb600d10 to your computer and use it in GitHub Desktop.
Vagrantfile for testing Tinkerbell
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64"
config.disksize.size = '30GB'
config.vm.provider :virtualbox do |v|
v.check_guest_additions = false
v.functional_vboxsf = false
v.cpus = 2
v.memory = 2048
v.customize ['modifyvm', :id, '--paravirtprovider', 'kvm']
end
config.vm.network "private_network", ip: "192.168.50.2", auto_config: false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment