diff --git a/continuousintegration/orchestration/tests/upgrade-eos.sh b/continuousintegration/orchestration/tests/upgrade-eos.sh index 240acba0c5a881d6d7bc4a5bd4c082c6a4f772b7..815915701a9947cf27b8f5bd096e48e1c1ed1010 100755 --- a/continuousintegration/orchestration/tests/upgrade-eos.sh +++ b/continuousintegration/orchestration/tests/upgrade-eos.sh @@ -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}