argo-cd/resource_customizations/trident.netapp.io/TridentBackendConfig/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

16 lines
428 B
Lua

local hs = {}
if obj.status ~= nil then
if obj.status.phase == "Bound" and obj.status.lastOperationStatus == "Success" then
hs.status = "Healthy"
hs.message = obj.status.message
return hs
end
if obj.status.lastOperationStatus == "Failed" then
hs.status = "Degraded"
hs.message = obj.status.message
return hs
end
end
hs.status = "Progressing"
hs.message = "Waiting for backend creation"
return hs