scripts: Create separate section for crio in collect script

Rather than folding crio under k8s, move it to a separate sub-section.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt 2019-03-11 14:14:47 +00:00
parent ae08ea3211
commit 30f9776e60

View File

@ -337,11 +337,12 @@ show_container_mgr_details()
run_cmd_and_show_quoted_output "" "kubectl version"
run_cmd_and_show_quoted_output "" "kubectl config view"
run_cmd_and_show_quoted_output "" "systemctl show kubelet"
fi
if have_cmd "crio"; then
run_cmd_and_show_quoted_output "" "crio --version"
run_cmd_and_show_quoted_output "" "systemctl show crio"
fi
if have_cmd "crio"; then
subheading "crio"
run_cmd_and_show_quoted_output "" "crio --version"
run_cmd_and_show_quoted_output "" "systemctl show crio"
fi
separator