Skip to content
Snippets Groups Projects
Commit 70f6a515 authored by Riabokon Stanislav(EPAM)[GCP]'s avatar Riabokon Stanislav(EPAM)[GCP]
Browse files

Merge branch 'endpoints' into 'master'

Added liveness and readiness endpoints (GONRG-9374)

See merge request !554
parents af5fb044 9a823304
No related branches found
No related tags found
1 merge request!554Added liveness and readiness endpoints (GONRG-9374)
Pipeline #264016 failed
......@@ -76,7 +76,13 @@
<version>5.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
......
......@@ -43,3 +43,6 @@ osm.postgres.username=${PARTITION_POSTGRESQL_USERNAME:usr_partition_pg}
osm.postgres.password=${PARTITION_POSTGRESQL_PASSWORD:partition_pg}
#property used only for mandatory bean creation, not actually used in partition service
dataPartitionId = ${DATA_PARTITION_ID:test-partition}
management.endpoints.web.exposure.include=health
management.health.probes.enabled=true
\ No newline at end of file
......@@ -101,6 +101,11 @@
<artifactId>osm</artifactId>
<version>0.26.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
......
......@@ -37,3 +37,6 @@ partition-namespace=partition
system.tenant.api=${SYSTEM_TENANT_API:true}
system-partition-id=${SYSTEM_PARTITION_ID:system}
system-partition-listable-and-resource-ready=${SYSTEM_PARTITION_LISTABLE_AND_RESOURCE_READY:false}
management.endpoints.web.exposure.include=health
management.health.probes.enabled=true
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment