2023-03-14 18:58:52 +00:00
|
|
|
# -*- mode: ruby -*-
|
|
|
|
# vi: set ft=ruby :
|
|
|
|
|
|
|
|
# Salt lab environment with one master and four minions
|
|
|
|
|
2023-03-14 03:08:57 +00:00
|
|
|
Vagrant.configure("2") do |config|
|
|
|
|
config.nfs.verify_installed = false
|
2023-03-24 19:45:04 +00:00
|
|
|
config.vm.synced_folder ".", "/vagrant", disabled: true
|
2023-03-14 03:08:57 +00:00
|
|
|
config.vm.define "salt", primary: true do |salt|
|
|
|
|
salt.vm.box = "peru/ubuntu-20.04-server-amd64"
|
|
|
|
salt.vm.hostname = "salt"
|
2023-03-14 18:58:52 +00:00
|
|
|
salt.vm.network "private_network", ip: "192.168.100.120"
|
2023-03-14 03:08:57 +00:00
|
|
|
salt.vm.provider :libvirt do |libvirt|
|
|
|
|
libvirt.memory = 1024
|
|
|
|
end
|
2023-03-24 02:40:54 +00:00
|
|
|
salt.vm.synced_folder 'srv', '/srv', type: 'rsync'
|
2023-03-14 03:08:57 +00:00
|
|
|
salt.vm.provision "shell", inline: <<-SHELL
|
2023-03-23 23:37:36 +00:00
|
|
|
apt-get update
|
|
|
|
apt-get install curl vim -y
|
2023-03-14 03:08:57 +00:00
|
|
|
curl -o bootstrap-salt.sh -L https://bootstrap.saltproject.io
|
2023-03-24 19:44:50 +00:00
|
|
|
sh bootstrap-salt.sh -M -X -U
|
2023-03-27 02:10:41 +00:00
|
|
|
cat << EOF > /etc/salt/master.d/lab.conf
|
|
|
|
auto_accept: True
|
|
|
|
file_roots:
|
|
|
|
base:
|
|
|
|
- /srv/salt
|
|
|
|
pillar_roots:
|
|
|
|
base:
|
|
|
|
- /srv/pillar
|
|
|
|
reactor:
|
|
|
|
- 'salt/minion/*/start':
|
|
|
|
- /srv/reactor/sync_grains.sls
|
|
|
|
EOF
|
2023-03-23 23:37:06 +00:00
|
|
|
systemctl start salt-master
|
|
|
|
systemctl start salt-minion
|
|
|
|
sleep 5
|
|
|
|
systemctl restart salt-master
|
2023-03-14 03:08:57 +00:00
|
|
|
SHELL
|
|
|
|
end
|
|
|
|
config.vm.define "minion01" do |minion01|
|
|
|
|
minion01.vm.box = "peru/ubuntu-20.04-server-amd64"
|
|
|
|
minion01.vm.hostname = "minion01"
|
2023-03-14 18:58:52 +00:00
|
|
|
minion01.vm.network "private_network", ip: "192.168.100.121"
|
2023-03-14 03:08:57 +00:00
|
|
|
minion01.vm.provision "shell", inline: <<-SHELL
|
2023-03-23 23:37:36 +00:00
|
|
|
apt-get update
|
2023-03-24 02:40:54 +00:00
|
|
|
apt-get install curl -y
|
2023-03-14 03:08:57 +00:00
|
|
|
curl -o bootstrap-salt.sh -L https://bootstrap.saltproject.io
|
2023-03-24 19:44:50 +00:00
|
|
|
sh bootstrap-salt.sh -A 192.168.100.120 -U
|
2023-03-24 02:40:54 +00:00
|
|
|
cat << EOF > /etc/salt/minion.d/grains.conf
|
|
|
|
grains:
|
|
|
|
roles:
|
|
|
|
- saltlab
|
|
|
|
EOF
|
|
|
|
systemctl restart salt-minion
|
2023-03-14 03:08:57 +00:00
|
|
|
SHELL
|
|
|
|
end
|
|
|
|
config.vm.define "minion02" do |minion02|
|
|
|
|
minion02.vm.box = "debian/bullseye64"
|
|
|
|
minion02.vm.hostname = "minion02"
|
2023-03-14 18:58:52 +00:00
|
|
|
minion02.vm.network "private_network", ip: "192.168.100.122"
|
2023-03-14 03:08:57 +00:00
|
|
|
minion02.vm.provision "shell", inline: <<-SHELL
|
2023-03-23 23:37:36 +00:00
|
|
|
apt-get update
|
2023-03-24 02:40:54 +00:00
|
|
|
apt-get install curl -y
|
2023-03-14 03:08:57 +00:00
|
|
|
curl -o bootstrap-salt.sh -L https://bootstrap.saltproject.io
|
2023-03-24 19:44:50 +00:00
|
|
|
sh bootstrap-salt.sh -A 192.168.100.120 -U
|
2023-03-24 02:40:54 +00:00
|
|
|
cat << EOF > /etc/salt/minion.d/grains.conf
|
|
|
|
grains:
|
|
|
|
roles:
|
|
|
|
- saltlab
|
2023-03-24 22:12:03 +00:00
|
|
|
- web
|
2023-03-24 02:40:54 +00:00
|
|
|
EOF
|
|
|
|
systemctl restart salt-minion
|
2023-03-14 03:08:57 +00:00
|
|
|
SHELL
|
|
|
|
end
|
|
|
|
config.vm.define "minion03" do |minion03|
|
|
|
|
minion03.vm.box = "generic/rocky9"
|
|
|
|
minion03.vm.hostname = "minion03"
|
2023-03-14 18:58:52 +00:00
|
|
|
minion03.vm.network "private_network", ip: "192.168.100.123"
|
2023-03-14 03:08:57 +00:00
|
|
|
minion03.vm.provision "shell", inline: <<-SHELL
|
2023-03-24 19:43:43 +00:00
|
|
|
echo -n "> Waiting for network..."
|
|
|
|
while ! host bootstrap.saltproject.io >/dev/null; do
|
|
|
|
echo -n "."
|
|
|
|
sleep 1
|
|
|
|
done
|
|
|
|
echo "Proceeding!"
|
2023-03-14 03:08:57 +00:00
|
|
|
curl -o bootstrap-salt.sh -L https://bootstrap.saltproject.io
|
2023-03-24 19:44:50 +00:00
|
|
|
# workaround for EL > 9 (https://github.com/saltstack/salt-bootstrap/issues/1903)
|
|
|
|
sh bootstrap-salt.sh -A 192.168.100.120 -U -P -x python3 onedir
|
2023-03-25 03:08:20 +00:00
|
|
|
systemctl enable salt-minion
|
2023-03-24 02:40:54 +00:00
|
|
|
cat << EOF > /etc/salt/minion.d/grains.conf
|
|
|
|
grains:
|
|
|
|
roles:
|
|
|
|
- saltlab
|
|
|
|
EOF
|
|
|
|
systemctl restart salt-minion
|
2023-03-14 03:08:57 +00:00
|
|
|
SHELL
|
|
|
|
end
|
|
|
|
config.vm.define "minion04" do |minion04|
|
|
|
|
minion04.vm.box = "generic/centos7"
|
|
|
|
minion04.vm.hostname = "minion04"
|
2023-03-14 18:58:52 +00:00
|
|
|
minion04.vm.network "private_network", ip: "192.168.100.124"
|
2023-03-14 03:08:57 +00:00
|
|
|
minion04.vm.provision "shell", inline: <<-SHELL
|
2023-03-24 19:43:43 +00:00
|
|
|
echo -n "> Waiting for network..."
|
|
|
|
while ! host bootstrap.saltproject.io >/dev/null; do
|
|
|
|
echo -n "."
|
|
|
|
sleep 1
|
|
|
|
done
|
|
|
|
echo "Proceeding!"
|
2023-03-14 03:08:57 +00:00
|
|
|
curl -o bootstrap-salt.sh -L https://bootstrap.saltproject.io
|
2023-03-24 19:44:50 +00:00
|
|
|
sh bootstrap-salt.sh -A 192.168.100.120 -U
|
2023-03-24 02:40:54 +00:00
|
|
|
cat << EOF > /etc/salt/minion.d/grains.conf
|
|
|
|
grains:
|
|
|
|
roles:
|
|
|
|
- saltlab
|
2023-03-24 22:12:03 +00:00
|
|
|
- web
|
2023-03-24 02:40:54 +00:00
|
|
|
EOF
|
|
|
|
systemctl restart salt-minion
|
2023-03-14 03:08:57 +00:00
|
|
|
SHELL
|
|
|
|
end
|
|
|
|
end
|