argo-cd/resource_customizations/pxc.percona.com/PerconaXtraDBCluster/health.lua
filiprafaj c602302d62
fix PerconaXtraDBCluster health (#16434)
Signed-off-by: Filip Rafaj <filip.rafaj@prusa3d.cz>
Co-authored-by: Filip Rafaj <filip.rafaj@prusa3d.cz>
2023-11-30 09:02:42 +05:30

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