Multi machine setup

This commit defines a multi machine Vagrant setup with internal
networking and the gnuviechadmin Git repositories mounted as shared
folders inside the corresponding virtual machines.

The contained bootstrap.sh clones all Git repositories and runs Vagrant
in the correct order.
This commit is contained in:
Jan Dittberner 2017-02-17 23:00:27 +01:00
parent fbf2a72862
commit f373d0c639
3 changed files with 111 additions and 57 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
repos/
.vagrant/

149
Vagrantfile vendored
View file

@ -1,71 +1,106 @@
# -*- mode: ruby -*- # -*- mode: ruby -*-
# vi: set ft=ruby : # vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below. config.vm.box = "debian/contrib-jessie64"
# For a complete reference, please see the online documentation at config.vm.post_up_message = nil
# https://docs.vagrantup.com. config.vm.synced_folder ".", "/vagrant", disabled: true
# Every Vagrant development environment requires a box. You can search for config.vm.define "salt" do |node|
# boxes at https://atlas.hashicorp.com/search. node.vm.hostname = "salt"
config.vm.box = "base" node.vm.synced_folder "repos/gvasalt/states", "/srv/salt"
node.vm.synced_folder "repos/gvasalt/pillar", "/srv/pillar"
node.vm.network "private_network", ip: "172.16.4.10"
node.vm.provider "virtualbox" do |vb|
vb.memory = "256"
end
end
# Disable automatic box update checking. If you disable this, then config.vm.define "mq" do |node|
# boxes will only be checked for updates when the user runs node.vm.hostname = "mq"
# `vagrant box outdated`. This is not recommended. node.vm.network "private_network", ip: "172.16.4.20"
# config.vm.box_check_update = false node.vm.provider "virtualbox" do |vb|
vb.memory = "256"
end
end
# Create a forwarded port mapping which allows access to a specific port config.vm.define "syslog" do |node|
# within the machine from a port on the host machine. In the example below, node.vm.hostname = "syslog"
# accessing "localhost:8080" will access port 80 on the guest machine. node.vm.network "private_network", ip: "172.16.4.30"
# config.vm.network "forwarded_port", guest: 80, host: 8080 node.vm.provider "virtualbox" do |vb|
vb.memory = "256"
end
end
# Create a private network, which allows host-only access to the machine config.vm.define "pgsql" do |node|
# using a specific IP. node.vm.hostname = "pgsql"
# config.vm.network "private_network", ip: "192.168.33.10" node.vm.synced_folder "repos/gvapgsql", "/srv/gvapgsql"
node.vm.network "private_network", ip: "172.16.4.40"
node.vm.provider "virtualbox" do |vb|
vb.memory = "256"
end
end
# Create a public network, which generally matched to bridged network. config.vm.define "dns" do |node|
# Bridged networks make the machine appear as another physical device on node.vm.hostname = "dns"
# your network. node.vm.network "private_network", ip: "172.16.4.50"
# config.vm.network "public_network" node.vm.provider "virtualbox" do |vb|
vb.memory = "256"
end
end
# Share an additional folder to the guest VM. The first argument is config.vm.define "ldap" do |node|
# the path on the host to the actual folder. The second argument is node.vm.hostname = "ldap"
# the path on the guest to mount the folder. And the optional third node.vm.synced_folder "repos/gvaldap", "/srv/gvaldap"
# argument is a set of non-required options. node.vm.network "private_network", ip: "172.16.4.60"
# config.vm.synced_folder "../data", "/vagrant_data" node.vm.provider "virtualbox" do |vb|
vb.memory = "256"
end
end
# Provider-specific configuration so you can fine-tune various config.vm.define "file" do |node|
# backing providers for Vagrant. These expose provider-specific options. node.vm.hostname = "file"
# Example for VirtualBox: node.vm.synced_folder "repos/gvafile", "/srv/gvafile"
# node.vm.network "private_network", ip: "172.16.4.70"
# config.vm.provider "virtualbox" do |vb| node.vm.provider "virtualbox" do |vb|
# # Display the VirtualBox GUI when booting the machine vb.memory = "256"
# vb.gui = true end
# end
# # Customize the amount of memory on the VM:
# vb.memory = "1024"
# end
#
# View the documentation for the provider you are using for more
# information on available options.
# Define a Vagrant Push strategy for pushing to Atlas. Other push strategies config.vm.define "mail" do |node|
# such as FTP and Heroku are also available. See the documentation at node.vm.hostname = "mail"
# https://docs.vagrantup.com/v2/push/atlas.html for more information. node.vm.network "private_network", ip: "172.16.4.80"
# config.push.define "atlas" do |push| node.vm.provider "virtualbox" do |vb|
# push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME" vb.memory = "256"
# end end
end
# Enable provisioning with a shell script. Additional provisioners such as config.vm.define "mysql" do |node|
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the node.vm.hostname = "mysql"
# documentation for more information about their specific syntax and use. node.vm.synced_folder "repos/gvamysql", "/srv/gvamysql"
# config.vm.provision "shell", inline: <<-SHELL node.vm.network "private_network", ip: "172.16.4.90"
# apt-get update node.vm.provider "virtualbox" do |vb|
# apt-get install -y apache2 vb.memory = "256"
# SHELL end
end
config.vm.define "web" do |node|
node.vm.hostname = "web"
node.vm.synced_folder "repos/gvaweb", "/srv/gvaweb"
node.vm.network "private_network", ip: "172.16.4.100"
node.vm.provider "virtualbox" do |vb|
vb.memory = "256"
end
end
config.vm.define "service" do |node|
node.vm.hostname = "service"
node.vm.synced_folder "repos/gva", "/srv/gva"
node.vm.network "forwarded_port", guest: 443, host:8443
node.vm.network "private_network", ip: "172.16.4.110"
node.vm.post_up_message = "Use https://localhost:8443/ to access the gva web interface"
node.vm.provider "virtualbox" do |vb|
vb.memory = "256"
end
end
end end

17
bootstrap.sh Executable file
View file

@ -0,0 +1,17 @@
#!/bin/sh
set -e
origdir=$(dirname $(readlink -f $0))
mkdir -p repos
for repo in gva gvafile gvaldap gvamysql gvapgsql gvasalt gvaweb; do
if [ ! -d "$origdir/repos/$repo" ]; then
git clone ludogit:$repo "$origdir/repos/$repo"
else
cd "$origdir/repos/$repo"
git fetch --all
cd "$origdir"
fi
done
vagrant up