From ad2c02bdc003a9f134d114f869433fb0bbfe9455 Mon Sep 17 00:00:00 2001 From: Rakshith R Date: Mon, 17 May 2021 16:47:31 +0530 Subject: [PATCH] ci: get logs from all containers in pod in system-status.sh Signed-off-by: Rakshith R --- system-status.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-status.sh b/system-status.sh index e803bae0d..d81db41a0 100755 --- a/system-status.sh +++ b/system-status.sh @@ -48,7 +48,7 @@ log kubectl -n rook-ceph get pods for POD in $(kubectl -n rook-ceph get pods -o jsonpath='{.items[0].metadata.name}') do log kubectl -n rook-ceph describe pod "${POD}" - log kubectl -n rook-ceph logs "${POD}" + log kubectl -n rook-ceph logs "${POD}" --all-containers log kubectl -n rook-ceph logs "${POD}" --all-containers --previous=true done log kubectl -n rook-ceph describe CephCluster