Skip to content
Snippets Groups Projects
Commit 4844d1bb authored by Julien Leduc's avatar Julien Leduc
Browse files

Now using the CI unique namespace and not the one from my tests

parent 24ab075f
No related branches found
No related tags found
No related merge requests found
......@@ -31,10 +31,10 @@ fi
# Display all backtraces if any
###
for backtracefile in $(kubectl -n ssi exec ctacli -- bash -c 'find /mnt/logs | grep core | grep bt$'); do
for backtracefile in $(kubectl --namespace ${instance} exec ctacli -- bash -c 'find /mnt/logs | grep core | grep bt$'); do
pod=$(echo ${backtracefile} | cut -d/ -f4)
echo "Found backtrace in pod ${pod}:"
kubectl -n ssi exec ctacli -- cat ${backtracefile}
kubectl --namespace ${instance} exec ctacli -- cat ${backtracefile}
done
###
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment