From 03739e3097ddf9423c9b4ab6212ab9d011c4fe4f Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Tue, 21 Jul 2020 16:50:03 +0200 Subject: [PATCH] Polish "Improve liveness/readiness health config" See gh-22107 --- .../src/docs/asciidoc/production-ready-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc index b2cf750092..864c4b2fbd 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/production-ready-features.adoc @@ -924,7 +924,7 @@ NOTE: `` should be set to the port that the actuator endpoints ar It could be the main web server port, or a separate management port if the `"management.server.port"` property has been set. These health groups are only enabled automatically if the application is <>. -You can enable them in any environment using the configprop:management.health.probes.enabled[] configuration property. +You can enable them in any environment using the configprop:management.endpoint.health.probes.enabled[] configuration property. NOTE: If an application takes longer to start than the configured liveness period, Kubernetes mention the `"startupProbe"` as a possible solution. The `"startupProbe"` is not necessarily needed here as the `"readinessProbe"` fails until all startup tasks are done, see <>.