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
I am trying to add liveness and readiness probes to my deployment of config-reloader and have a few questions.
The version of config-reloader I am using (0.4.3-gke.0) doesn't have the ready-url flag. That flag was added in a later version. Does ready-url specify the readiness endpoint for config-reloader?
That brings me to the second question. I don't quite see an endpoint for liveness. What approach would you recommend for implementing liveness for config-reloader?
Thank you
The text was updated successfully, but these errors were encountered:
That brings me to the second question. I don't quite see an endpoint for liveness. What approach would you recommend for implementing liveness for config-reloader?
We don't have a ready endpoint for config-reloader. A workaround is you can check and see if /metrics is returning data.
Why are you trying to add liveness and readiness probes?
I would set the probers to the Prometheus readiness/healthy endpoints, since that's what you care about. The /metrics endpoint would just be a hacky workaround.
Hello,
I am trying to add liveness and readiness probes to my deployment of
config-reloader
and have a few questions.The version of
config-reloader
I am using (0.4.3-gke.0
) doesn't have theready-url
flag. That flag was added in a later version. Doesready-url
specify the readiness endpoint forconfig-reloader
?That brings me to the second question. I don't quite see an endpoint for liveness. What approach would you recommend for implementing liveness for
config-reloader
?Thank you
The text was updated successfully, but these errors were encountered: