From 80fad19b7bae6c697d9bb2821659e8873f7b4c7f Mon Sep 17 00:00:00 2001 From: Dustin Kut Moy Cheung Date: Tue, 14 Jan 2025 14:50:04 -0500 Subject: [PATCH] Add liveness/readiness endpoints These endpoints are used to test for the liveness and readiness of the application in Kubernetes. This allows the application to take its time to startup, set the liveness and readiness endpoints as ready, then begin to accept requests. The endpoints are: - /q/health/live - /q/health/ready Documentation: https://quarkus.io/guides/smallrye-health --- pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pom.xml b/pom.xml index e4d8053..b68428b 100644 --- a/pom.xml +++ b/pom.xml @@ -102,6 +102,10 @@ io.quarkus quarkus-rest-client-jackson + + io.quarkus + quarkus-smallrye-health + io.quarkiverse.tektonclient quarkus-tekton-client