Or, maybe, not exactly inconsistency but now it's a bit misleading... In the [Kubernetes Container Lifecycle](https://docs.spring.io/spring-boot/how-to/deployment/cloud.html#howto.deployment.cloud.kubernetes.container-lifecycle) there is a suggestion to use preStop handler like this: `command: ["sh", "-c", "sleep 10"]` Problem is that by default Spring Boot paketo images [from now on use](https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-3.4-Release-Notes#paketo-tiny-builder-for-building-oci-images) `paketobuildpacks/builder-jammy-java-tiny` image, which does not have any shell. So, either a new recipe should be suggested or a word of warning should say that for default spring boot images that won't work anymore. As a suggestion - maybe include "sleep" command into the image, so something like this would work? ```yaml lifecycle: preStop: exec: command: - sleep - 60 ```