From 028ff3a7be8f5f0c0af9486c800156df83c2d9ea Mon Sep 17 00:00:00 2001 From: Ivo Smid Date: Tue, 4 Jul 2023 14:13:23 +0100 Subject: [PATCH 1/2] Improve Kubernetes probe customization documentation See gh-34978 --- .../src/docs/asciidoc/actuator/endpoints.adoc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/actuator/endpoints.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/actuator/endpoints.adoc index faefc79352..355f4afd58 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/actuator/endpoints.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/actuator/endpoints.adoc @@ -1014,10 +1014,8 @@ This can be done by setting the following property: management.endpoint.health.probes.add-additional-paths=true ---- -This would make `liveness` available at `/livez` and `readiness` at `readyz` on the main server port. - - - +This would make `liveness` group available at `/livez` and `readiness` group at `readyz` on the main server port. +Paths could be customized using `additional-path` property on each group, see <> for more detail. [[actuator.endpoints.kubernetes-probes.external-state]] ==== Checking External State With Kubernetes Probes From fc31e14e7220e41ad536aac3e390eb31a8b74a25 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Tue, 4 Jul 2023 15:15:14 +0100 Subject: [PATCH 2/2] Polish 'Improve Kubernetes probe customization documentation' See gh-34978 --- .../src/docs/asciidoc/actuator/endpoints.adoc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/actuator/endpoints.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/actuator/endpoints.adoc index 355f4afd58..abe5ed7122 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/actuator/endpoints.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/actuator/endpoints.adoc @@ -1014,8 +1014,10 @@ This can be done by setting the following property: management.endpoint.health.probes.add-additional-paths=true ---- -This would make `liveness` group available at `/livez` and `readiness` group at `readyz` on the main server port. -Paths could be customized using `additional-path` property on each group, see <> for more detail. +This would make the `liveness` group available at `/livez` and the `readiness` group available at `/readyz` on the main server port. +Paths can be customized using the `additional-path` property on each group, see <> for details. + + [[actuator.endpoints.kubernetes-probes.external-state]] ==== Checking External State With Kubernetes Probes