mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-22 01:17:16 +00:00
Signed-off-by: Filip Rafaj <filip.rafaj@prusa3d.cz> Co-authored-by: Filip Rafaj <filip.rafaj@prusa3d.cz>
38 lines
1 KiB
Lua
38 lines
1 KiB
Lua
local hs = {}
|
|
if obj.status ~= nil then
|
|
|
|
if obj.status.state == "initializing" then
|
|
hs.status = "Progressing"
|
|
hs.message = obj.status.ready .. "/" .. obj.status.size .. " node(s) are ready"
|
|
return hs
|
|
end
|
|
|
|
if obj.status.state == "ready" then
|
|
hs.status = "Healthy"
|
|
hs.message = obj.status.ready .. "/" .. obj.status.size .. " node(s) are ready"
|
|
return hs
|
|
end
|
|
|
|
if obj.status.state == "paused" then
|
|
hs.status = "Unknown"
|
|
hs.message = "Cluster is paused"
|
|
return hs
|
|
end
|
|
|
|
if obj.status.state == "stopping" then
|
|
hs.status = "Degraded"
|
|
hs.message = "Cluster is stopping (" .. obj.status.ready .. "/" .. obj.status.size .. " node(s) are ready)"
|
|
return hs
|
|
end
|
|
|
|
if obj.status.state == "error" then
|
|
hs.status = "Degraded"
|
|
hs.message = "Cluster is on error: " .. table.concat(obj.status.message, ", ")
|
|
return hs
|
|
end
|
|
|
|
end
|
|
|
|
hs.status = "Unknown"
|
|
hs.message = "Cluster status is unknown. Ensure your ArgoCD is current and then check for/file a bug report: https://github.com/argoproj/argo-cd/issues"
|
|
return hs
|