Move provisioning to separate file
- Corrected disk size to correct TiB size for 18 TB - Moved provisioning logic to separate script - Added scratch directory with .gitignore for local overrides - Fixed VAGRANT_PROV boolean handling to prevent default override
This commit is contained in:
parent
ebf2bfa46a
commit
2b32ab31c9
@ -113,8 +113,9 @@ the following available settings:
|
|||||||
- Default: `16`
|
- Default: `16`
|
||||||
- Number of virtual disks to create (max 676)
|
- Number of virtual disks to create (max 676)
|
||||||
- `DISK_SIZE`
|
- `DISK_SIZE`
|
||||||
- Default: `18T`
|
- Default: `16.37T`
|
||||||
- Size of each virtual disk (sparse allocation)
|
- Binary size of each virtual disk (sparse allocation)
|
||||||
|
- Convert decimal TB to binary TiB: 18 TB × (1000^4 ÷ 1024^4) = 16.37 TiB
|
||||||
|
|
||||||
## Copyright and License
|
## Copyright and License
|
||||||
|
|
||||||
|
34
Vagrantfile
vendored
34
Vagrantfile
vendored
@ -9,14 +9,15 @@ if File.exist?(settings_path)
|
|||||||
settings = YAML.load_file(settings_path)
|
settings = YAML.load_file(settings_path)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Can't use `||` here because `false || true` evaluates to true
|
||||||
|
VAGRANT_PROV = settings.key?('VAGRANT_PROV') ? settings['VAGRANT_PROV'] : true
|
||||||
VAGRANT_NAME = settings['VAGRANT_NAME'] || 'zfstest'
|
VAGRANT_NAME = settings['VAGRANT_NAME'] || 'zfstest'
|
||||||
VAGRANT_BOX = settings['VAGRANT_BOX'] || 'debian/bookworm64'
|
VAGRANT_BOX = settings['VAGRANT_BOX'] || 'debian/bookworm64'
|
||||||
VAGRANT_PROV = settings['VAGRANT_PROV'] || true
|
|
||||||
VAGRANT_CPUS = settings['VAGRANT_CPUS'] || 4
|
VAGRANT_CPUS = settings['VAGRANT_CPUS'] || 4
|
||||||
VAGRANT_MEM = settings['VAGRANT_MEM'] || 4096
|
VAGRANT_MEM = settings['VAGRANT_MEM'] || 4096
|
||||||
VAGRANT_SH = settings['VAGRANT_SH'] || ''
|
VAGRANT_SH = settings['VAGRANT_SH'] || ''
|
||||||
NUM_DISKS = settings['NUM_DISKS'] || 16
|
NUM_DISKS = settings['NUM_DISKS'] || 16
|
||||||
DISK_SIZE = settings['DISK_SIZE'] || '18T'
|
DISK_SIZE = settings['DISK_SIZE'] || '16.37T'
|
||||||
|
|
||||||
Vagrant.configure("2") do |config|
|
Vagrant.configure("2") do |config|
|
||||||
config.vm.box = VAGRANT_BOX
|
config.vm.box = VAGRANT_BOX
|
||||||
@ -49,34 +50,7 @@ Vagrant.configure("2") do |config|
|
|||||||
end
|
end
|
||||||
|
|
||||||
if VAGRANT_PROV
|
if VAGRANT_PROV
|
||||||
config.vm.provision "shell", inline: <<-SHELL
|
config.vm.provision "shell", path: "provision.sh"
|
||||||
if [ -f /etc/os-release ]; then
|
|
||||||
. /etc/os-release
|
|
||||||
OS_ID=$ID
|
|
||||||
else
|
|
||||||
echo "Cannot detect OS, exiting"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$OS_ID" = "debian" ]; then
|
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
|
||||||
SOURCES_LIST="/etc/apt/sources.list.d/contrib.list"
|
|
||||||
echo "deb http://deb.debian.org/debian/ ${VERSION_CODENAME} contrib" > "$SOURCES_LIST"
|
|
||||||
apt-get update
|
|
||||||
apt-get install -y linux-headers-$(uname -r)
|
|
||||||
apt-get install -y zfsutils-linux
|
|
||||||
elif [ "$OS_ID" = "rocky" ]; then
|
|
||||||
dnf install -y epel-release
|
|
||||||
dnf config-manager --enable epel
|
|
||||||
dnf install -y https://zfsonlinux.org/epel/zfs-release-2-3$(rpm --eval "%{dist}").noarch.rpm
|
|
||||||
dnf config-manager --disable zfs
|
|
||||||
dnf config-manager --enable zfs-kmod
|
|
||||||
dnf install -y zfs
|
|
||||||
else
|
|
||||||
echo "Unsupported OS: $OS_ID"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
SHELL
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if VAGRANT_SH != ''
|
if VAGRANT_SH != ''
|
||||||
|
28
provision.sh
Normal file
28
provision.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
if [ -f /etc/os-release ]; then
|
||||||
|
# shellcheck source=/dev/null
|
||||||
|
. /etc/os-release
|
||||||
|
OS_ID=$ID
|
||||||
|
else
|
||||||
|
echo "Cannot detect OS, exiting"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$OS_ID" = "debian" ]; then
|
||||||
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
|
SOURCES_LIST="/etc/apt/sources.list.d/contrib.list"
|
||||||
|
echo "deb http://deb.debian.org/debian/ ${VERSION_CODENAME} contrib" >"$SOURCES_LIST"
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y "linux-headers-$(uname -r)"
|
||||||
|
apt-get install -y zfsutils-linux
|
||||||
|
elif [ "$OS_ID" = "rocky" ]; then
|
||||||
|
dnf install -y epel-release
|
||||||
|
dnf config-manager --enable epel
|
||||||
|
dnf install -y "https://zfsonlinux.org/epel/zfs-release-2-3$(rpm --eval "%{dist}").noarch.rpm"
|
||||||
|
dnf config-manager --disable zfs
|
||||||
|
dnf config-manager --enable zfs-kmod
|
||||||
|
dnf install -y zfs
|
||||||
|
else
|
||||||
|
echo "Unsupported OS: $OS_ID"
|
||||||
|
exit 1
|
||||||
|
fi
|
2
scratch/.gitignore
vendored
Normal file
2
scratch/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
*
|
||||||
|
!.gitignore
|
Loading…
x
Reference in New Issue
Block a user