12 lines
485 B
Ruby
12 lines
485 B
Ruby
Vagrant.configure("2") do |config|
|
|
config.vm.define "node01" do |node|
|
|
node.vm.box = "bento/ubuntu-22.04"
|
|
node.vm.provider "parallels" do |prl|
|
|
prl.name = "node01" # Set the visible name of the VM in Parallels
|
|
prl.memory = 4096 # Allocate 4 GB of RAM (in MB)
|
|
prl.cpus = 4 # Allocate 4 CPU cores
|
|
prl.check_guest_tools = true # Enable automatic checking/updating of Parallels Tools in the guest
|
|
end
|
|
end
|
|
end
|