Skip to content

Commit

Permalink
segregate odf collection from default
Browse files Browse the repository at this point in the history
Currently the default and odf mode collects all the
resouces. This commit segregates the odf mode
from default mode.

Signed-off-by: yati1998 <[email protected]>
  • Loading branch information
yati1998 authored and openshift-cherrypick-robot committed May 16, 2024
1 parent 0b33505 commit c366b3f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion collection-scripts/gather
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,13 @@ pre-install.sh ${BASE_COLLECTION_PATH}
# Process the options
if [ "$odf" == true ]; then
echo "Collect ODF logs..."
gather_main &
gather_ceph_pod_logs &
pids+=($!)
gather_ceph_logs &
pids+=($!)
gather_namespaced_resources &
pids+=($!)
gather_clusterscoped_resources &
pids+=($!)
fi

Expand Down

0 comments on commit c366b3f

Please sign in to comment.