An additional question. Does Datahub have an overa...
# all-things-deployment
q
An additional question. Does Datahub have an overall “healthcheck” endpoint that I could point our ingress controllers at? (We use F5 bigIP for ingress control to the network, they require a health check of some kind to ensure the server is up before it sends traffic)
p
b
On the frontend component we use the /admin for health check, which is not ideal, but does work: https://github.com/acryldata/datahub-helm/blob/master/charts/datahub/subcharts/datahub-frontend/templates/deployment.yaml#L62
q
We actually decided to go down a slightly different path. We’ve got Apache running as an SSO proxy so it’s serving a “health check” endpoint that lets the F5 device know the server is at least online and are using JMX to monitor the actual health of the app
b
Nice, thanks for sharing.