diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2022-10-24 14:26:35 +0200 |
---|---|---|
committer | Lukasz Rajewski <lukasz.rajewski@t-mobile.pl> | 2023-02-15 22:27:49 +0100 |
commit | cb795c01df747f872f5985ba318eefdddea57507 (patch) | |
tree | 378750d7a62ba272decdac166dc4d305b6918206 /csit | |
parent | f4bfac20ab2aaed86846da037db986d3d1dcb6f2 (diff) |
[OSDF] Enable OSDF in ServiceMesh deployment
In case AAF is disabled the secret loading via AAF-SMS should not be called
Issue-ID: OPTFRA-1099
Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl>
Change-Id: Ifca03215a36705b1c160b2cbf708389bd2162301
Diffstat (limited to 'csit')
-rwxr-xr-x | csit/scripts/simulator_script.sh | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/csit/scripts/simulator_script.sh b/csit/scripts/simulator_script.sh index e146cb9..f6daab6 100755 --- a/csit/scripts/simulator_script.sh +++ b/csit/scripts/simulator_script.sh @@ -44,9 +44,20 @@ chmod +x ./build_sim_image.sh # run osdf_sim docker run -d --name osdf_sim -p "5000:5000" osdf_sim:latest; +#wait for docker setup a while +sleep 10 + +docker ps -a + +echo "logs of the osdf_sim" +sudo cat `docker inspect -f '{{.LogPath}}' osdf_sim` + + OSDF_SIM_IP=`${WORKSPACE}/scripts/get-instance-ip.sh osdf_sim` echo "OSDF_SIM_IP=${OSDF_SIM_IP}" +docker inspect osdf_sim + ${WORKSPACE}/scripts/wait_for_port.sh ${OSDF_SIM_IP} 5000 @@ -54,5 +65,4 @@ ${WORKSPACE}/scripts/wait_for_port.sh ${OSDF_SIM_IP} 5000 sleep 2 echo "inspect docker things for tracing purpose" -docker inspect osdf_sim |