Skip to content

Commit

Permalink
Merge pull request #143 from black-dragon74/def-inc-all
Browse files Browse the repository at this point in the history
Include all resources in default op mode
  • Loading branch information
openshift-merge-bot[bot] authored Apr 4, 2024
2 parents 3d00bf2 + 857056a commit f2ff577
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 f2ff577

Please sign in to comment.