Skip to content

Commit

Permalink
Include all resources in default op mode
Browse files Browse the repository at this point in the history
Signed-off-by: black-dragon74 <[email protected]>
  • Loading branch information
black-dragon74 committed Apr 4, 2024
1 parent 3d00bf2 commit 857056a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions collection-scripts/gather
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,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
Expand Down
6 changes: 6 additions & 0 deletions collection-scripts/gather_main
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down

0 comments on commit 857056a

Please sign in to comment.