mirror of
https://github.com/sigoden/dufs.git
synced 2026-04-08 16:49:02 +03:00
[GH-ISSUE #472] Readiness endpoint #260
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @j-vizcaino on GitHub (Oct 26, 2024).
Original GitHub issue: https://github.com/sigoden/dufs/issues/472
Specific Demand
Does dufs provide a readiness endpoint or URL that could be used in the context of Kubernetes? (or similar).
My local setup enforces authentication, and therefore the
/URL returns a 401 status code, which leads Kubernetes into thinking the application is not ready.Implement Suggestion
It is common practice for applications to provide either a separate port for readiness checks, or a dumb URL like
/_readyor/_healthz/readythat simply returnsOKtext with a 200 HTTP status.Thank you for developing and maintaining
dufs: it is an amazing tool, simple and to the point. This clearly sets it apart of other bloated alternatives.