mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-22 01:17:16 +00:00
* 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>
36 lines
1.1 KiB
Lua
36 lines
1.1 KiB
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 == "Failed" then
|
|
hs.status = "Degraded"
|
|
return hs
|
|
elseif hs.message == "Pending" or hs.message == "Scheduling" or hs.message == "Scheduled" then
|
|
return hs
|
|
elseif hs.message == "Succeeded" then
|
|
hs.status = "Suspended"
|
|
return hs
|
|
elseif hs.message == "Unknown" then
|
|
hs.status = "Unknown"
|
|
return hs
|
|
end
|
|
end
|
|
if obj.status.conditions ~= nil then
|
|
for i, condition in ipairs(obj.status.conditions) do
|
|
if condition.type == "Ready" then
|
|
if condition.status == "True" then
|
|
hs.status = "Healthy"
|
|
hs.message = "Running"
|
|
else
|
|
hs.status = "Degraded"
|
|
hs.message = condition.message
|
|
end
|
|
elseif condition.type == "Paused" and condition.status == "True" then
|
|
hs.status = "Suspended"
|
|
hs.message = condition.message
|
|
return hs
|
|
end
|
|
end
|
|
end
|
|
end
|
|
return hs
|