Skip to content

Commit

Permalink
update: add CFO with appwrappers
Browse files Browse the repository at this point in the history
Signed-off-by: Wen Zhou <[email protected]>
  • Loading branch information
zdtsw committed Jun 19, 2024
1 parent da6e55c commit 8ec0bd5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ This script also collects data from all the namespaces that has
- `rayclusters` `rayjobs` `rayservices` for KubeRay component
- `clusterqueues` `localqueues` `multikueueclusters` `multikueueconfigs` `provisioningrequestconfigs` `resourceflavors` `workloads` `workloadpriorityclasses` for Kueue component
- `mpijobs` `mxjobs` `paddlejobs` `pytorchjob` `tfjob` `xgboostjob` for Kubeflow Training Operator
- `appwrappers` for CodeFlare Operator
- `inferenceservice` `inferencegraphs` `"trainedmodels` `servingruntimes` `clusterstoragecontainers` `predictors` for Kserve and ModelMesh component
- `notebooks` for Workbench component

Expand All @@ -41,6 +42,7 @@ Full list of supported components see table below:
| kuberay | KubeRay |
| kueue | Kueue |
| kfto | Kubeflow Training Operator |
| cfo | CodeFlare Operator |
| kserve | Kserve |
| modelmesh | Model Mesh |
| workbench | Workbench |
Expand Down
3 changes: 3 additions & 0 deletions collection-scripts/gather
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ case "$component" in
;;
"kfto")
/usr/bin/gather_kfto
"cfo")
/usr/bin/gather_cfo
;;
*) # for all
/usr/bin/gather_data_science_pipelines
Expand All @@ -59,6 +61,7 @@ case "$component" in
/usr/bin/gather_kuberay
/usr/bin/gather_kueue
/usr/bin/gather_kfto
/usr/bin/gather_cfo
;;
esac

Expand Down
8 changes: 8 additions & 0 deletions collection-scripts/gather_cfo
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash
# shellcheck disable=SC1091
source common.sh
resources=("appwrappers")

nslist=$(get_all_namespace "${resources[@]}")

run_mustgather "${nslist[@]}"

0 comments on commit 8ec0bd5

Please sign in to comment.