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 f44cabe73fb0..3f731d8a6050 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 @@ -894,18 +894,21 @@ You can then configure your Kubernetes infrastructure with the following endpoin livenessProbe: httpGet: path: /actuator/health/liveness - port: liveness-port + port: failureThreshold: ... periodSeconds: ... readinessProbe: httpGet: path: /actuator/health/readiness - port: liveness-port + port: failureThreshold: ... periodSeconds: ... ---- +NOTE: `` should be set to the port that the actuator endpoints are available on. +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.