5
0
Fork 0

commit by to_remotes 2023-09-20 10:59:13 +0200 from vmdevhw

main
Holger Wasem 2023-09-20 10:59:13 +02:00
parent 268f78794d
commit 1ecb2503d4
1 changed files with 13 additions and 5 deletions

10
init.sh
View File

@ -74,10 +74,18 @@ EOT
fi fi
fi fi
echo " "
echo -n "ready to set-up K8s? type yes: "
read -r ready_to_setup_k8s
if [ "$ready_to_setup_k8s" = "yes" ]; then
echo "<=><=><=><=><=><=><=><=><=><=><=><=><=><=><=><=>" echo "<=><=><=><=><=><=><=><=><=><=><=><=><=><=><=><=>"
echo "initializing K8s Set-Up" echo "initializing K8s Set-Up"
source $WA_REPO/shared_resources_k8s/k8s/setup.sh source $WA_REPO/shared_resources_k8s/k8s/setup.sh
else
echo "Aborting"
exit 1
fi