diff --git a/test/smoke/run-smoke-suite.sh b/test/smoke/run-smoke-suite.sh index c1b6667..1b90c23 100755 --- a/test/smoke/run-smoke-suite.sh +++ b/test/smoke/run-smoke-suite.sh @@ -58,7 +58,15 @@ function get_logs() { echo "#######################################" echo "###### ${CONTAINER} container logs ######" echo -e "#######################################\n" - kubectl logs -l "app.kubernetes.io/component=postanalytics" -c ${CONTAINER} --tail=-1 + kubectl logs -l "app.kubernetes.io/component=postanalytics" -c ${CONTAINER} --tail=-1 || true + echo -e "#######################################\n" + done + + for CONTAINER in sidecar-init-iptables sidecar-init-helper nginx; do + echo "#######################################" + echo "###### ${CONTAINER} container logs ######" + echo "#######################################\n" + kubectl logs -l "app=workload" -c ${CONTAINER} --tail=-1 || true echo -e "#######################################\n" done