Collecting onos, etcd, kafka in the infra namespace
Change-Id: Id0f202d256b3458c6b4e9d15aa637e3b23ecb58a
diff --git a/scripts/log-collector.sh b/scripts/log-collector.sh
index 6577631..43b4d52 100755
--- a/scripts/log-collector.sh
+++ b/scripts/log-collector.sh
@@ -45,7 +45,7 @@
WORK=$(mktemp -d)
# All VOLTHA PODS + ONOS
- PODS="$(kubectl -n default get pod -o name | grep onos | sed -e 's/^/default:/g') $(kubectl get -n voltha pod -o name | sed -e 's/^/voltha:/g')"
+ PODS="$(kubectl -n default get pod -o name | grep onos | sed -e 's/^/default:/g') $(kubectl get -n voltha pod -o name | sed -e 's/^/voltha:/g') $(kubectl -n infra get pod -o name | sed -e 's/^/default:/g')"
if [ $? -ne 0 ]; then
echo "Failed to get PODs from Kubernetes, will retry after sleep ..."
else