From 2242f0193eb17ebd9143f9e8afb8bcefda9672d7 Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Wed, 29 Mar 2023 17:25:09 -0400 Subject: Fix CSIT test issues Updated healthcheck to use RFC8040 style URL instead of Biermann. Removed code that installs idm file to reset admin password - format is not correct for Chlorine. Issue-ID: CCSDK-3812 Signed-off-by: Dan Timoney Change-Id: I9f422325dc42c41a9d5b6943f784503217be7294 --- csit/scripts/healthcheck/health_check.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'csit') diff --git a/csit/scripts/healthcheck/health_check.sh b/csit/scripts/healthcheck/health_check.sh index aed3b5ab..de683b5c 100644 --- a/csit/scripts/healthcheck/health_check.sh +++ b/csit/scripts/healthcheck/health_check.sh @@ -19,7 +19,8 @@ ############################################################################### unset http_proxy https_proxy -response=$(curl --write-out '%{http_code}' --silent --output /dev/null -H "Authorization: Basic YWRtaW46S3A4Yko0U1hzek0wV1hsaGFrM2VIbGNzZTJnQXc4NHZhb0dHbUp2VXkyVQ==" -X POST -H "X-FromAppId: csit-sdnc" -H "X-TransactionId: csit-ccsdk" -H "Accept: application/json" -H "Content-Type: application/json" http://localhost:8383/restconf/operations/SLI-API:healthcheck ) +# response=$(curl --write-out '%{http_code}' --silent --output /dev/null -H "Authorization: Basic YWRtaW46S3A4Yko0U1hzek0wV1hsaGFrM2VIbGNzZTJnQXc4NHZhb0dHbUp2VXkyVQ==" -X POST -H "X-FromAppId: csit-sdnc" -H "X-TransactionId: csit-ccsdk" -H "Accept: application/json" -H "Content-Type: application/json" http://localhost:8383/restconf/operations/SLI-API:healthcheck ) +response=$(curl --write-out '%{http_code}' --silent --output /dev/null -H "Authorization: Basic YWRtaW46YWRtaW4=" -X POST -H "X-FromAppId: csit-sdnc" -H "X-TransactionId: csit-ccsdk" -H "Accept: application/json" -H "Content-Type: application/json" http://localhost:8383/rests/operations/SLI-API:healthcheck ) if [ "$response" == "200" ]; then echo "CCSDK health check passed." -- cgit 1.2.3-korg