diff options
author | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2023-02-14 17:52:49 +0000 |
---|---|---|
committer | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2023-02-14 18:06:20 +0000 |
commit | 6ebe5b6521d3dc5f98981ffded70155b537c533e (patch) | |
tree | ace47e52775348828642ac8eec5d9c66f52276f4 /helm/run-test.sh | |
parent | f5a11b0b346df610ffa8d9857956abf113ce6765 (diff) |
Add volume mount for storing k8s robot logs to the host
Issue-ID: POLICY-4546
Signed-off-by: zrrmmua <ramesh.murugan.iyer@est.tech>
Change-Id: I498aa9db39d6b04e685a893c9bca41c6bb108265
Diffstat (limited to 'helm/run-test.sh')
-rwxr-xr-x | helm/run-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helm/run-test.sh b/helm/run-test.sh index bb073c38..d40bb585 100755 --- a/helm/run-test.sh +++ b/helm/run-test.sh @@ -38,6 +38,6 @@ ROBOT_VARIABLES="-v DATA:$DATA -v NODETEMPLATES:$NODETEMPLATES -v POLICY_RUNTIME echo "Run Robot test" echo ROBOT_VARIABLES="${ROBOT_VARIABLES}" echo "Starting Robot test suites ..." -python3 -m robot.run $ROBOT_VARIABLES $1 +python3 -m robot.run -d /tmp/ $ROBOT_VARIABLES $1 RESULT=$? echo "RESULT: ${RESULT}" |