Skip to content

Commit 99edec4

Browse files
Merge pull request #549 from dinhxuanvu/olm-log-fix
Fix olm pod name so log to be written correctly to olm.log
2 parents 51a0c51 + a59adbc commit 99edec4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/run_e2e_local.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ function cleanupAndExit {
2626
exitCode=$?
2727
if [ "$exitCode" -ne "0" ]; then
2828
echo "error running tests. logs written to olm.log, catalog.log, and package.log";
29-
kubectl -n ${namespace} logs -l app=alm-operator > olm.log;
29+
kubectl -n ${namespace} logs -l app=olm-operator > olm.log;
3030
kubectl -n ${namespace} logs -l app=catalog-operator > catalog.log;
3131
kubectl -n ${namespace} logs -l app=package-server > package.log
32-
else
32+
else
3333
cleanup
3434
fi
3535

0 commit comments

Comments
 (0)