argo-cd/resource_customizations/networking.gke.io/ManagedCertificate/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

23 lines
615 B
Lua

local hs = {}
if obj.status ~= nil then
if obj.status.domainStatus ~= nil then
for i, domainStatus in ipairs(obj.status.domainStatus) do
if domainStatus.status == "FailedNotVisible" then
hs.status = "Degraded"
hs.message = "At least one certificate has failed to be provisioned"
return hs
end
end
end
end
if obj.status ~= nil and obj.status.certificateStatus == "Active" then
hs.status = "Healthy"
hs.message = "All certificates are active"
return hs
end
hs.status = "Progressing"
hs.message = "At least one certificate is still being provisioned"
return hs