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/

165
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"
# Disable automatic box update checking. If you disable this, then node.vm.network "private_network", ip: "172.16.4.10"
# boxes will only be checked for updates when the user runs node.vm.provider "virtualbox" do |vb|
# `vagrant box outdated`. This is not recommended. vb.memory = "256"
# config.vm.box_check_update = false end
end
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below, config.vm.define "mq" do |node|
# accessing "localhost:8080" will access port 80 on the guest machine. node.vm.hostname = "mq"
# config.vm.network "forwarded_port", guest: 80, host: 8080 node.vm.network "private_network", ip: "172.16.4.20"
node.vm.provider "virtualbox" do |vb|
# Create a private network, which allows host-only access to the machine vb.memory = "256"
# using a specific IP. end
# config.vm.network "private_network", ip: "192.168.33.10" end
# Create a public network, which generally matched to bridged network. config.vm.define "syslog" do |node|
# Bridged networks make the machine appear as another physical device on node.vm.hostname = "syslog"
# your network. node.vm.network "private_network", ip: "172.16.4.30"
# config.vm.network "public_network" node.vm.provider "virtualbox" do |vb|
vb.memory = "256"
# Share an additional folder to the guest VM. The first argument is end
# the path on the host to the actual folder. The second argument is end
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options. config.vm.define "pgsql" do |node|
# config.vm.synced_folder "../data", "/vagrant_data" node.vm.hostname = "pgsql"
node.vm.synced_folder "repos/gvapgsql", "/srv/gvapgsql"
# Provider-specific configuration so you can fine-tune various node.vm.network "private_network", ip: "172.16.4.40"
# backing providers for Vagrant. These expose provider-specific options. node.vm.provider "virtualbox" do |vb|
# Example for VirtualBox: vb.memory = "256"
# end
# config.vm.provider "virtualbox" do |vb| end
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true config.vm.define "dns" do |node|
# node.vm.hostname = "dns"
# # Customize the amount of memory on the VM: node.vm.network "private_network", ip: "172.16.4.50"
# vb.memory = "1024" node.vm.provider "virtualbox" do |vb|
# end vb.memory = "256"
# end
# View the documentation for the provider you are using for more end
# information on available options.
config.vm.define "ldap" do |node|
# Define a Vagrant Push strategy for pushing to Atlas. Other push strategies node.vm.hostname = "ldap"
# such as FTP and Heroku are also available. See the documentation at node.vm.synced_folder "repos/gvaldap", "/srv/gvaldap"
# https://docs.vagrantup.com/v2/push/atlas.html for more information. node.vm.network "private_network", ip: "172.16.4.60"
# 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
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the config.vm.define "file" do |node|
# documentation for more information about their specific syntax and use. node.vm.hostname = "file"
# config.vm.provision "shell", inline: <<-SHELL node.vm.synced_folder "repos/gvafile", "/srv/gvafile"
# apt-get update node.vm.network "private_network", ip: "172.16.4.70"
# apt-get install -y apache2 node.vm.provider "virtualbox" do |vb|
# SHELL vb.memory = "256"
end
end
config.vm.define "mail" do |node|
node.vm.hostname = "mail"
node.vm.network "private_network", ip: "172.16.4.80"
node.vm.provider "virtualbox" do |vb|
vb.memory = "256"
end
end
config.vm.define "mysql" do |node|
node.vm.hostname = "mysql"
node.vm.synced_folder "repos/gvamysql", "/srv/gvamysql"
node.vm.network "private_network", ip: "172.16.4.90"
node.vm.provider "virtualbox" do |vb|
vb.memory = "256"
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