We are running a Gradle build cache node on our own infrastructure (Kubernetes) using the docker image.
We would like to enable uiAccess so that authentication is required to access the web UI (so that the build cache can be available outside of our VPN).
However, we also need to designate a health-check path for a Kubernetes readiness probe so that Kubernetes can tell if the process is up or not.
Because there is no source available for this software, it’s hard to tell what paths are appropriate for health-checking. /
requires auth when uiAccess is set. Is there a health-check URL that doesn’t require auth?
For now I’m hacking around it by using the path to the Gradle elephant logo (which probably will change whenever we upgrade) as a health check because static assets don’t appear to apply auth. Are there any other auth-free paths?