argo-cd/resource_customizations/flink.apache.org/FlinkDeployment/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

24 lines
834 B
Lua

local health_status = {}
if obj.status ~= nil and obj.status.reconciliationStatus ~= nil then
if obj.status.reconciliationStatus.success or obj.status.reconciliationStatus.state == "DEPLOYED" then
health_status.status = "Healthy"
return health_status
end
if obj.status.jobManagerDeploymentStatus == "DEPLOYED_NOT_READY" or obj.status.jobManagerDeploymentStatus == "DEPLOYING" then
health_status.status = "Progressing"
health_status.message = "Waiting for deploying"
return health_status
end
if obj.status.jobManagerDeploymentStatus == "ERROR" then
health_status.status = "Degraded"
health_status.message = obj.status.reconciliationStatus.error
return health_status
end
end
health_status.status = "Progressing"
health_status.message = "Waiting for Flink operator"
return health_status