Skip to content
Snippets Groups Projects
Commit 5a8a69f1 authored by Julien Leduc's avatar Julien Leduc
Browse files

Increasing wait time to give enough time for EOS to be ready and adding the FS...

Increasing wait time to give enough time for EOS to be ready and adding the FS online check for the systemd based regression test. Adding df -f output for the eos container as well to be extra safe.
parent 1e11fffe
No related branches found
No related tags found
No related merge requests found
......@@ -194,7 +194,7 @@ fi
# test EOS
# eos slow behind us and we need to give it time to be ready
sleep 5
sleep 10
eos -b node ls
xrdcp /etc/group root://${eoshost}:/${EOS_TMP_DIR}/testFile
......
......@@ -46,5 +46,17 @@ kubectl -n ${NAMESPACE} exec ctaeos -- systemctl status eos@*
kubectl -n ${NAMESPACE} exec ctaeos -- eos version
echo "Waiting for the EOS disk filesystem using /fst to come on-line"
while test 1 != `kubectl -n ${NAMESPACE} exec ctaeos -- eos fs ls /fst | grep online | wc -l`; do
echo "Sleeping 1 second"
sleep 1
done
# eos slow behind us and we need to give it time to be ready
sleep 10
echo "Available disk space inside EOS container:"
kubectl -n ${NAMESPACE} exec ctaeos -- df -h
echo "Launching archive_retrieve.sh:"
./archive_retrieve.sh -n ${NAMESPACE}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment