argo-cd/resource_customizations/spot.io/SpotDeployment/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

41 lines
956 B
Lua

local hs = {}
if obj.status == nil or obj.status.conditions == nil then
return hs
end
for _, condition in ipairs(obj.status.conditions) do
if condition.type == "InvalidSpec" then
hs.status = "Degraded"
hs.message = condition.message
return hs
end
if condition.type == "Progressing" and condition.reason == "RolloutAborted" then
hs.status = "Degraded"
hs.message = condition.message
return hs
end
if condition.type == "Progressing" and condition.reason == "ProgressDeadlineExceeded" then
hs.status = "Degraded"
hs.message = condition.message
return hs
end
if condition.type == "Paused" and condition.status == "True" then
hs.status = "Suspended"
hs.message = "Rollout is paused"
return hs
end
end
if obj.status.phase == "Progressing" then
hs.status = "Progressing"
hs.message = "Waiting for rollout to finish steps"
return hs
end
hs.status = "Healthy"
hs.message = ""
return hs