diff options
author | 2024-08-09 18:16:06 +0100 | |
---|---|---|
committer | 2024-08-20 14:27:26 +0000 | |
commit | 8458aa547f5bc3415b4f337935410a5ff19299e8 (patch) | |
tree | 59c3d87074c915e86511da129479a456e1b76d14 /csit/scripts/healthcheck | |
parent | 0dd2728b50598b27f4412e66ed3dcc669e0d4610 (diff) |
Manually reset versions for newdelhi branch - avoid conflict
Keeps most changes since New Delhi Release - easier than rebase & cherry pick
Also update Docs for New Delhi
Issue-ID: CCSDK-4020
Change-Id: Id04a61c0ba1bdb69fa8752446eadb110ebf69f19
Signed-off-by: JohnKeeney <john.keeney@est.tech>
Diffstat (limited to 'csit/scripts/healthcheck')
-rw-r--r-- | csit/scripts/healthcheck/.env | 2 | ||||
-rwxr-xr-x | csit/scripts/healthcheck/test/pms_a1sim_sdnc.sh | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/csit/scripts/healthcheck/.env b/csit/scripts/healthcheck/.env index c9b3561d..9545a7e5 100644 --- a/csit/scripts/healthcheck/.env +++ b/csit/scripts/healthcheck/.env @@ -18,7 +18,7 @@ #PMS PMS_IMAGE_BASE="onap/ccsdk-oran-a1policymanagementservice" -PMS_IMAGE_TAG="1.8.0-SNAPSHOT-latest" +PMS_IMAGE_TAG="1.7.1-SNAPSHOT-latest" #A1_SIM A1_SIM_IMAGE_BASE="nexus3.o-ran-sc.org:10002/o-ran-sc/a1-simulator" diff --git a/csit/scripts/healthcheck/test/pms_a1sim_sdnc.sh b/csit/scripts/healthcheck/test/pms_a1sim_sdnc.sh index 79c08b63..7b8aca7a 100755 --- a/csit/scripts/healthcheck/test/pms_a1sim_sdnc.sh +++ b/csit/scripts/healthcheck/test/pms_a1sim_sdnc.sh @@ -1,7 +1,8 @@ #!/bin/bash # ============LICENSE_START=============================================== -# Copyright (C) 2021 Nordix Foundation. All rights reserved. +# Copyright (C) 2021-2023 Nordix Foundation. All rights reserved. +# Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved. # ======================================================================== # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -46,7 +47,7 @@ checkStatus(){ done echo -e "$i sec: $4 is NOT alive!\n" echo "Capturing docker logs (before exiting) ..." - docker-compose --env-file .env -f docker-compose.yml -f sdnc/docker-compose.yml logs + docker-compose --env-file .env -f docker-compose.yml -f sdnc/docker-compose.yml logs exit -1 } |