You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It'd be great to have track for our status resource field, that exposes actual state of the applications.
An example of lua script:
localhs= {}
ifobj.status~=nilthenifobj.status.updateStatus~="operational" thenhs.status="Progressing"hs.message=obj.status.reasonreturnhsendhs.status="Healthy"hs.message=""returnhsendhs.status="Progressing"hs.message="actual status is unknown"returnhs
The text was updated successfully, but these errors were encountered:
argocd allows to bundle health checks for custom resources in order to track it's health status.
https://argo-cd.readthedocs.io/en/latest/operator-manual/health/#way-2-contribute-a-custom-health-check
https://github.com/argoproj/argo-cd/tree/master/resource_customizations
It'd be great to have track for our
status
resource field, that exposes actual state of the applications.An example of lua script:
The text was updated successfully, but these errors were encountered: