argo-cd/resource_customizations/trident.netapp.io/TridentBackendConfig/health.lua

17 lines
422 B
Lua
Raw Normal View History

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