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 would be wonderfull if a failure or success of a synced secret would be written to the status part of the custom resource. This makes it possible to write a health check in ArgoCD for example and makes monitoring better. Currently only the initial sync can somewhat be monitored with the following health check in ArgoCD:
hs = {} if obj.status ~= nil then if obj.status.lastAzureUpdate ~= nil then hs.status = "Healthy" hs.message = obj.status.secretHash return hs end end hs.status = "Progressing" hs.message = "Waiting for reconciliation" return hs
The text was updated successfully, but these errors were encountered:
It would be wonderfull if a failure or success of a synced secret would be written to the status part of the custom resource. This makes it possible to write a health check in ArgoCD for example and makes monitoring better. Currently only the initial sync can somewhat be monitored with the following health check in ArgoCD:
hs = {} if obj.status ~= nil then if obj.status.lastAzureUpdate ~= nil then hs.status = "Healthy" hs.message = obj.status.secretHash return hs end end hs.status = "Progressing" hs.message = "Waiting for reconciliation" return hs
The text was updated successfully, but these errors were encountered: