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

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

parent e9c8aa21
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