vagrant configuration file
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure("2") do |config| config.vm.provider "virtualbox" do |v| v.memory = 2048 v.cpus = 2 end # Every Vagrant virtual environment requires a box to build off of. config.vm.box = "almalinux/9" #config.vm.box_version = "20251010.1.3" #config.disksize.size = '25GB' #config.vm.disk :disk, size: "25GB", primary: true #config.vm.provision "shell", path: "disk-extend.sh" #config.vm.provision "file", source: "~/.ssh/id_rsa.pub", destination: "~/.ssh/id_rsa.pub" #config.ssh.insert_key = false #config.ssh.private_key_path = "~/.vagrant.d/insecure_private_key" # Boot with a GUI so you can see the screen. (Default is headless) #config.vm.boot_mode = :gui # # Targets # config.vm.define :pgnode1 do |target_config| target_config.vm.host_name = 'pgnode1' ...