argo-cd/resource_customizations/operator.knative.dev/KnativeEventing/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

36 lines
No EOL
1.2 KiB
Lua

local health_status = {}
if obj.status ~= nil then
if obj.status.conditions ~= nil then
local numTrue = 0
local numFalse = 0
local msg = ""
for i, condition in pairs(obj.status.conditions) do
msg = msg .. i .. ": " .. condition.type .. " | " .. condition.status .. "\n"
if condition.type == "Ready" and condition.status == "True" then
numTrue = numTrue + 1
elseif condition.type == "InstallSucceeded" and condition.status == "True" then
numTrue = numTrue + 1
elseif condition.type == "Ready" and condition.status == "False" then
numFalse = numFalse + 1
elseif condition.status == "Unknown" then
numFalse = numFalse + 1
end
end
if(numFalse > 0) then
health_status.message = msg
health_status.status = "Progressing"
return health_status
elseif(numTrue == 2) then
health_status.message = "KnativeEventing is healthy."
health_status.status = "Healthy"
return health_status
else
health_status.message = msg
health_status.status = "Degraded"
return health_status
end
end
end
health_status.status = "Progressing"
health_status.message = "Waiting for KnativeEventing"
return health_status