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

Adding preflight test against the latest eos from dev branch.

parent 22542d6e
No related branches found
No related tags found
No related merge requests found
......@@ -87,5 +87,14 @@ kubectl -n ${NAMESPACE} exec ctaeos -- eos fs ls /fst
echo "Available disk space inside EOS container:"
kubectl -n ${NAMESPACE} exec ctaeos -- df -h
# Launching preflight test against the new version of EOS
PREFLIGHTTEST_SCRIPT='preflighttest.sh'
if [ -x ${PREFLIGHTTEST_SCRIPT} ]; then
echo "Launching preflight test: ${PREFLIGHTTEST_SCRIPT}"
./$(basename ${PREFLIGHTTEST_SCRIPT}) -n ${NAMESPACE}
else
echo "SKIPPING preflight test: ${PREFLIGHTTEST_SCRIPT} not available"
fi
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