Skip to content

Instantly share code, notes, and snippets.

@mattpwest
Last active August 14, 2022 23:16
Show Gist options
  • Save mattpwest/3245a01218a4e7ef7f5d11b579014258 to your computer and use it in GitHub Desktop.
Save mattpwest/3245a01218a4e7ef7f5d11b579014258 to your computer and use it in GitHub Desktop.
Vagrant Infrastructure Test Environment
# -*- mode: ruby -*-
# vi: set ft=ruby :
# README
#
# Getting Started:
# 1. vagrant plugin install vagrant-hostmanager
# 2. vagrant up
# 3. vagrant ssh
#
# This should put you at the control host
# with access, by name, to other vms
Vagrant.configure(2) do |config|
config.hostmanager.enabled = true
config.vm.box = "ubuntu/bionic64"
config.vm.define "control", primary: true do |h|
h.vm.host_name = "control"
h.vm.network "private_network", ip: "192.168.135.10"
h.vm.provision "shell", path: "vagrant/control.ubuntu.sh"
end
config.vm.define "sonar01" do |h|
h.vm.provider :virtualbox do |virtualbox|
virtualbox.customize ["modifyvm", :id, "--memory", "4096"]
end
h.vm.host_name = "sonar01"
h.vm.network "private_network", ip: "192.168.135.101"
h.vm.network "forwarded_port", guest: "9000", host: "9000", host_ip: "127.0.0.1"
h.vm.network "forwarded_port", guest: "5432", host: "5432", host_ip: "127.0.0.1"
h.vm.network "forwarded_port", guest: "80", host: "80", host_ip: "127.0.0.1"
h.vm.network "forwarded_port", guest: "443", host: "443", host_ip: "127.0.0.1"
h.vm.provision :shell, path: "vagrant/generic.ubuntu.sh"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment