094fa23df6
This commit reworks the Vagrantfile for Nomad in order to support straightforward testing on more than one operating system, whilst retaining the ability to stand up a test cluster running Ubuntu. The following changes are made: - Scripts have been extracted from the Vagrantfile into their own shell script files, in order that editors lint them. - All scripts have been edited to lint with no warnings or errors for their respective shells. - Scripts are named according to the operating system and privilege level which they run. We prefer to run a whole shell script as root versus prefixing (essentially) every command with `sudo` or an equivalent. - The Linux development box has been separated from the test cluster, removing some of the more gnarly (and less portable) logic. The Linux development box is still primary and autostarts. - A FreeBSD target has been added. The base box works for both Virtualbox and VMWare Fusion. - A target is added to the GNUmakefile to stand up a test cluster, using the default provider, or overriding the provider by setting the PROVIDER variable in make: - `make testcluster` - `make testcluster PROVIDER=vmware_fusion` - Machines in the test cluster have Avahi configured for zeroconf discovery. Each machine can ping each other machine at `hostname.local` - for example `nomad-server02.local`, `nomad-client03.local`.
48 lines
889 B
Bash
Executable file
48 lines
889 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
|
|
VERSION=1.18.0
|
|
DOWNLOAD=https://github.com/coreos/rkt/releases/download/v${VERSION}/rkt-v${VERSION}.tar.gz
|
|
|
|
function install_rkt() {
|
|
if [[ -e /usr/local/bin/rkt ]] ; then
|
|
if [ "rkt Version: ${VERSION}" == "$(rkt version | head -n1)" ] ; then
|
|
return
|
|
fi
|
|
fi
|
|
|
|
wget -q -O /tmp/rkt.tar.gz "${DOWNLOAD}"
|
|
|
|
tar -C /tmp -xvf /tmp/rkt.tar.gz
|
|
mv /tmp/rkt-v${VERSION}/rkt /usr/local/bin
|
|
mv /tmp/rkt-v${VERSION}/*.aci /usr/local/bin
|
|
}
|
|
|
|
function configure_rkt_networking() {
|
|
if [[ -e /etc/rkt/net.d/99-network.conf ]] ; then
|
|
return
|
|
fi
|
|
|
|
mkdir -p /etc/rkt/net.d
|
|
cat <<EOT > /etc/rkt/net.d/99-network.conf
|
|
{
|
|
"name": "default",
|
|
"type": "ptp",
|
|
"ipMasq": false,
|
|
"ipam": {
|
|
"type": "host-local",
|
|
"subnet": "172.16.28.0/24",
|
|
"routes": [
|
|
{
|
|
"dst": "0.0.0.0/0"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
EOT
|
|
}
|
|
|
|
install_rkt
|
|
configure_rkt_networking
|