Skip to content

Commit 336a925

Browse files
authored
Merge pull request rossoctl#1863 from esnible/check-mlflow-status
Feat: Check MLflow status when reporting component status
2 parents 7e39b6a + 6e8012d commit 336a925

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

kagenti/backend/app/routers/config.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,9 @@ async def get_platform_status(
207207
# (openshift-builds), so we check the API group instead of a specific service.
208208
ComponentStatus(name="Shipwright", status=_check_api_group(kube, "shipwright.io")),
209209
ComponentStatus(name="Phoenix", status=_check_service(kube, "kagenti-system", "phoenix")),
210+
ComponentStatus(
211+
name="MLflow", status=_check_deployment_ready(kube, "kagenti-system", "mlflow")
212+
),
210213
]
211214

212215
strategy_names: List[str] = []

0 commit comments

Comments
 (0)