feat: add scripts for pre-flight checks and user input wait in k3s pipeline

This commit is contained in:
jon brookes 2025-10-14 17:49:59 +01:00
parent f23e1c41ff
commit 02b114e0e6
3 changed files with 71 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
echo "Please configure DNS using the IP address from the previous stage."
echo "you have 120 seconds."
for i in {120..1}; do
echo -ne "Time remaining: $i seconds\r"
sleep 1
done
echo ""
exit 0