Skip to content

Commit

Permalink
Add health-checker to buildpacks config, contributes health-check uti…
Browse files Browse the repository at this point in the history
…lity into image
  • Loading branch information
eidottermihi committed Dec 11, 2024
1 parent 44d7e44 commit e701fa8
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
THE SOFTWARE.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -263,10 +265,16 @@
<HTTP_PROXY>${env.HTTP_PROXY}</HTTP_PROXY>
<HTTPS_PROXY>${env.HTTPS_PROXY}</HTTPS_PROXY>
<NO_PROXY>${env.NO_PROXY}</NO_PROXY>
<BP_HEALTH_CHECKER_ENABLED>true</BP_HEALTH_CHECKER_ENABLED>
</env>
<tags>${env.IMAGE_TAGS}</tags>
<builder>
paketobuildpacks/builder-jammy-base:latest</builder>
<builder>paketobuildpacks/builder-jammy-base:latest</builder>
<buildpacks>
<buildpack>
urn:cnb:builder:paketo-buildpacks/java</buildpack>
<buildpack>
gcr.io/paketo-buildpacks/health-checker:latest</buildpack>
</buildpacks>
</image>
</configuration>
<executions>
Expand Down

0 comments on commit e701fa8

Please sign in to comment.