From 1bf26bdbb0966ea40709f84b3d3ca30896d94439 Mon Sep 17 00:00:00 2001 From: black-dragon74 Date: Thu, 4 Apr 2024 13:52:16 +0530 Subject: [PATCH] Include all resources in default op mode Signed-off-by: black-dragon74 --- collection-scripts/gather | 1 + collection-scripts/gather_main | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/collection-scripts/gather b/collection-scripts/gather index 4c045da..1b11d4b 100755 --- a/collection-scripts/gather +++ b/collection-scripts/gather @@ -196,6 +196,7 @@ fi # No args, normal op mode if [ "$default" = true ]; then + # TODO: Add warning helptext here echo "No args detected, must-gather will start in default op mode" gather_main fi diff --git a/collection-scripts/gather_main b/collection-scripts/gather_main index 5c03109..3e4bede 100755 --- a/collection-scripts/gather_main +++ b/collection-scripts/gather_main @@ -18,6 +18,12 @@ procids+=($!) gather_ceph_pod_logs & procids+=($!) +gather_dr_resources & +procids+=($!) + +gather_odf_client & +procids+=($!) + # Check if procid array has any values, if so, wait for them to finish if [ ${#procids[@]} -ne 0 ]; then echo "Waiting on collection scripts to finish."