diff options
author | Michael Dürre <michael.duerre@highstreet-technologies.com> | 2023-03-21 12:45:42 +0100 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2023-03-29 15:46:12 -0400 |
commit | 5a763149e6c57b72a4a59faf3300bb55c7c2279a (patch) | |
tree | 978390778c4900f5dcb0a3a6fa20e38d8ee4da41 /csit | |
parent | d11b0692ca464fa2060f48d078577e59042e27b1 (diff) |
fix odlsli base image
switch odlsli to chlorine base image
Install missing packages as dependencies
Issue-ID: CCSDK-3873
Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com>
Change-Id: I2346fe996aa57baff3f1a7fac3b328682772551b
Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com>
Diffstat (limited to 'csit')
-rw-r--r-- | csit/plans/healthcheck/setup.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/csit/plans/healthcheck/setup.sh b/csit/plans/healthcheck/setup.sh index 327aba21..5e4b7a78 100644 --- a/csit/plans/healthcheck/setup.sh +++ b/csit/plans/healthcheck/setup.sh @@ -55,7 +55,7 @@ chmod +x docker-compose # WAIT 5 minutes maximum and check karaf.log for readiness every 10 seconds -TIME_OUT=300 +TIME_OUT=360 INTERVAL=10 TIME=0 while [ "$TIME" -lt "$TIME_OUT" ]; do @@ -74,9 +74,13 @@ done if [ "$TIME" -ge "$TIME_OUT" ]; then echo TIME OUT: karaf session not started in $TIME_OUT seconds, setup failed + echo "karaf.log follows:" + docker exec ccsdk_odlsli_container cat /opt/opendaylight/data/log/karaf.log exit 1; fi +echo "*TRACE* bundle list : $(docker exec -i ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list)" + num_bundles=$(docker exec -i ccsdk_odlsli_container /opt/opendaylight/current/bin/client bundle:list | tail -1 | cut -d' ' -f1) if [ "$num_bundles" -ge 333 ]; then |