diff --git a/components/operators/openshift-gitops/instance/components/health-check-openshift-ai/patch-inferenceservice-health-check.yaml b/components/operators/openshift-gitops/instance/components/health-check-openshift-ai/patch-inferenceservice-health-check.yaml index 6c6120ae..0512c55f 100644 --- a/components/operators/openshift-gitops/instance/components/health-check-openshift-ai/patch-inferenceservice-health-check.yaml +++ b/components/operators/openshift-gitops/instance/components/health-check-openshift-ai/patch-inferenceservice-health-check.yaml @@ -53,7 +53,7 @@ if progressing == false and degraded == false and status_unknown == 0 and status_false == 0 then health_status.status = "Healthy" msg = "InferenceService is healthy." - elseif degraded == false and status_unknown >= 0 then + elseif degraded == false and status_unknown > 0 then msg = msg .. " || unknown: " .. status_unknown .. " || false: " .. status_false .. " || degraded: " .. tostring(degraded) .. " || progressing: " .. tostring(progressing) health_status.status = "Progressing" else