-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run a full integration test with a ZFS filesystem during build
- Loading branch information
Showing
4 changed files
with
102 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,6 +80,6 @@ echo '' | |
echo 'Testing...' | ||
echo '' | ||
|
||
"${repo_root}/test.sh" | ||
"${repo_root}/test-smoke.sh" | ||
|
||
popd > /dev/null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
#!/usr/bin/env sh | ||
|
||
set -eu | ||
|
||
output_dir=$(pwd) | ||
prod_disk="${output_dir}/disk-production.raw" | ||
backup_disk="${output_dir}/disk-backup.raw" | ||
|
||
echo 'Create sparse files to use as disks for ZFS...' | ||
for disk_file in $prod_disk $backup_disk; do | ||
truncate -s 10M $disk_file | ||
ls -l $disk_file | ||
done | ||
|
||
prod_pool='production-pool' | ||
backup_pool='backup-pool' | ||
|
||
echo 'Create ZFS pools...' | ||
zpool create $prod_pool $prod_disk | ||
zpool create $backup_pool $backup_disk | ||
|
||
zpool status | ||
|
||
prod_dataset="${prod_pool}\test" | ||
backup_dataset="${backup_pool}\test" | ||
echo "Create dataset \"${prod_dataset}\"..." # backup dataset created from syncoid replication | ||
zfs create $prod_pool | ||
zfs list -rt all $prod_pool | ||
|
||
echo 'Create sanoid config...' | ||
mkdir /etc/sanoid | ||
wget -O /etc/sanoid/sanoid.defaults.conf https://github.com/jimsalterjrs/sanoid/raw/refs/tags/v2.2.0/sanoid.defaults.conf | ||
|
||
cat < EOF > /etc/sanoid/sanoid.conf | ||
[${prod_dataset}] | ||
use_template = default | ||
frequently = 60 | ||
frequent_period = 1 | ||
EOF | ||
|
||
test_file_path="/${prod_dataset}/date.txt" | ||
|
||
echo 'Create an initial test file with data...' | ||
echo date > $test_file_path | ||
|
||
echo 'Run sanoid to take snapshots...' | ||
./sanoid --take-snapshots --verbose | ||
|
||
echo 'Update test file with new data...' | ||
echo date > $test_file_path | ||
|
||
echo 'Wait 1 minute to take another snapshot...' | ||
sleep 1m | ||
|
||
echo 'Taking new snapshot with sanoid...' | ||
./sanoid --take-snapshots --verbose | ||
|
||
echo 'List all snapshots...' | ||
zfs list -rt $prod_pool | ||
|
||
echo 'Execute findoid to test locating snapshots containing a given file...' | ||
./findoid $test_file_path | ||
|
||
echo 'Execute syncoid to replicate snapshots to backup pool...' | ||
./syncoid $prod_dataset $backup_pool | ||
|
||
echo 'List all snapshots on backup pool...' | ||
zfs list -rt all $backup_pool | ||
|
||
echo 'Adjust sanoid config to prune minute-ly snapshots...' | ||
cat < EOF > /etc/sanoid/sanoid.conf | ||
[${prod_dataset}] | ||
use_template = default | ||
frequently = 0 | ||
EOF | ||
|
||
echo 'Execute sanoid to prune snapshots...' | ||
./sanoid --prune-snapshots --verbose | ||
|
||
echo 'List all snapshots...' | ||
zfs list -rt $prod_pool | ||
|
||
echo '' | ||
echo 'sanoid, findoid, and syncoid tested successfully!' | ||
echo '' | ||
|
||
echo 'Destroying test pools...' | ||
for pool in $prod_pool $backup_pool; do | ||
zfs destroy $pool | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters