mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
* 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>
41 lines
956 B
Lua
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
|
|
|
|
|
|
|