argo-cd/resource_customizations/capabilities.3scale.net/DeveloperAccount/health.lua
Adriano Machado d954789d47
feat(server): 3scale health checks (#24327) (#24326)
Signed-off-by: Adriano Machado <60320+ammachado@users.noreply.github.com>
2025-09-06 14:24:18 -04:00

31 lines
994 B
Lua

local hs = {}
if obj.status ~= nil and obj.status.conditions ~= nil then
for _, condition in ipairs(obj.status.conditions) do
if condition.status ~= "True" then goto continue end
if condition.type == "Ready" then
hs.status = "Healthy"
hs.message = "3scale DeveloperAccount is ready"
return hs
elseif condition.type == "Invalid" then
hs.status = "Degraded"
hs.message = condition.message or "3scale DeveloperAccount configuration is invalid"
return hs
elseif condition.type == "Failed" then
hs.status = "Degraded"
hs.message = condition.message or "3scale DeveloperAccount synchronization failed"
return hs
elseif condition.type == "Waiting" then
hs.status = "Suspended"
hs.message = condition.message or "3scale DeveloperAccount is waiting for approval"
return hs
end
::continue::
end
end
hs.status = "Progressing"
hs.message = "Waiting for 3scale DeveloperAccount status..."
return hs