argo-cd/resource_customizations/cdi.kubevirt.io/DataVolume/health.lua
Josh Soref 491b3898ac
chore(action): minor lua changes (#15580)
* chore(action): add newlines at eof

Signed-off-by: Josh Soref <jsoref@gmail.com>

* chore(action): fix whitespace indentation

Signed-off-by: Josh Soref <jsoref@gmail.com>

* chore(action): use local annotations

Signed-off-by: Josh Soref <jsoref@gmail.com>

---------

Signed-off-by: Josh Soref <jsoref@gmail.com>
2023-09-21 09:20:42 -04:00

25 lines
764 B
Lua

local hs = { status="Progressing", message="No status available"}
if obj.status ~= nil then
if obj.status.phase ~= nil then
hs.message = obj.status.phase
if hs.message == "Succeeded" then
hs.status = "Healthy"
return hs
elseif hs.message == "Failed" or hs.message == "Unknown" then
hs.status = "Degraded"
elseif hs.message == "Paused" then
hs.status = "Suspended"
return hs
end
end
if obj.status.conditions ~= nil then
for i, condition in ipairs(obj.status.conditions) do
if condition.type == "Running" and condition.status == "False" and condition.reason == "Error" then
hs.status = "Degraded"
hs.message = condition.message
return hs
end
end
end
end
return hs