evolved-npcs-infra/control-plane/vagrant/Vagrantfile
2025-10-01 14:41:34 -07:00

25 lines
924 B
Ruby

Vagrant.configure("2") do |config|
config.vm.define "control-plane-node-1" do |vm|
vm.vm.provider :virtualbox do |domain|
domain.cpus = 2
domain.memory = 2048
domain.serial :type => "file", :source => {:path => "/tmp/vagrant/control-plane-node-1.log"}
domain.storage :file, :device => :cdrom, :path => "/tmp/vagrant/metal-amd64.iso"
domain.storage :file, :size => '4G', :type => 'raw'
domain.boot 'hd'
domain.boot 'cdrom'
end
end
config.vm.define "worker-node-1" do |vm|
vm.vm.provider :virtualbox do |domain|
domain.cpus = 2
domain.memory = 2048
domain.serial :type => "file", :source => {:path => "/tmp/vagrant/worker-node-1.log"}
domain.storage :file, :device => :cdrom, :path => "/tmp/vagrant/metal-amd64.iso"
domain.storage :file, :size => '4G', :type => 'raw'
domain.boot 'hd'
domain.boot 'cdrom'
end
end
end