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
If you had observed, the quarkus application deployed on Kubernetes does not have any health checks on it. As Kubernetes best practice its highly recommended that health checks be added to the all the deployments.
45
45
46
-
Health checks in Kubernetes can be added using https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/[Liveliness and Readiness] probes.
46
+
Health checks in Kubernetes can be added using https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/[Liveness and Readiness] probes.
47
47
48
48
:quarkus-health-ext-name: quarkus-smallrye-health
49
49
50
50
[#qext-add-extensions]
51
-
=== Adding new extensions
51
+
=== Adding Health Check extension
52
52
53
53
We can add `{quarkus-health-ext-name}` extension to allow Quarkus application to be probed on the REST endpoint called `health` to know about its current health.
54
54
@@ -114,7 +114,7 @@ The REST call about should return an response like:
114
114
----
115
115
116
116
[#qext-add-probes-to-k8s]
117
-
== Add probes to Kubernetes Quarkus Application
117
+
=== Add probes to Kubernetes Quarkus Application
118
118
119
119
Before we add the probes to the Kubernetes application, we need to push the rebuilt containers to the container registry.
120
120
@@ -161,7 +161,7 @@ ifndef::workshop[]
161
161
endif::[]
162
162
163
163
[#qext-invoke-k8s-svc]
164
-
== Invoke the Kubernetes Service
164
+
=== Invoke the Kubernetes Service
165
165
166
166
Adding probes will cause the redeployment of the Kubernetes application. Wait for the application to be in `Running` state before you can xref:03-containers-kubernetes.adoc#conk8s-invoke-k8s-svc[Invoke the Service]. The status of the application can be checked with the command:
167
167
ifndef::workshop[]
@@ -191,3 +191,187 @@ ifndef::workshop[]
191
191
--
192
192
====
193
193
endif::[]
194
+
[#qext-custom-health-check]
195
+
=== Customizing Health Checks
196
+
197
+
So far, you've seen that some a default health check is provided but in most cases, you'd like to customize this logic providing custom logic.
198
+
Moreover, Kubernetes provides the concept of liveness and readiness probe to regularly check the health of the application.
199
+
200
+
liveness:: Checks if the application is up and running.
201
+
readiness:: Checks if the application can receive public requests.
202
+
203
+
Let's create a custom check for both liveness and readiness checks.
204
+
Add new Java file in `$PROJECT_HOME/src/main/java/com/example` called `FruitHealthCheck` with the following contents:
After adding `smallrye-health` extension we should have REST endpoint called `/health` available. Lets invoke the `/health` endpoint to check the health of the Quarkus application and you'll see both health checks.
259
+
260
+
[#qext-call-health-custom]
261
+
=== Invoke Service
262
+
:doc-sec: custom-health
263
+
:k8s-cli: k8s
264
+
:path: health
265
+
:k8s-env: minikube
266
+
:cli-tool: curl
267
+
:address: localhost
268
+
269
+
The simple `{path}` REST URI can be called via browser using http://localhost:8080/{path} or using CLI like:
Once the rebuilt containers has been successfully pushed to the container registry run the following command to add the probes to the kubernetes deployment.
0 commit comments