From a17e16390ca7ee2ce7bef2e68c4c5ec09f782a2a Mon Sep 17 00:00:00 2001 From: Tullio Sebastiani Date: Wed, 9 Oct 2024 09:26:08 +0200 Subject: [PATCH] cluster events check removed from funtest (deprecated krkn-lib v4.0.0) Signed-off-by: Tullio Sebastiani --- CI/tests/test_telemetry.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/CI/tests/test_telemetry.sh b/CI/tests/test_telemetry.sh index e1f83bf38..dc5510611 100644 --- a/CI/tests/test_telemetry.sh +++ b/CI/tests/test_telemetry.sh @@ -26,7 +26,6 @@ function functional_test_telemetry { RUN_FOLDER=`cat CI/out/test_telemetry.out | grep amazonaws.com | sed -rn "s#.*https:\/\/.*\/files/(.*)#\1#p"` $AWS_CLI s3 ls "s3://$AWS_BUCKET/$RUN_FOLDER/" | awk '{ print $4 }' > s3_remote_files echo "checking if telemetry files are uploaded on s3" - cat s3_remote_files | grep events-00.json || ( echo "FAILED: events-00.json not uploaded" && exit 1 ) cat s3_remote_files | grep critical-alerts-00.log || ( echo "FAILED: critical-alerts-00.log not uploaded" && exit 1 ) cat s3_remote_files | grep prometheus-00.tar || ( echo "FAILED: prometheus backup not uploaded" && exit 1 ) cat s3_remote_files | grep telemetry.json || ( echo "FAILED: telemetry.json not uploaded" && exit 1 )