-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(properties): correct properties for 8.6 docker images
- Loading branch information
1 parent
4fd0307
commit 94f9d55
Showing
3 changed files
with
28 additions
and
4 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
bundle/default-bundle/src/main/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
server.port=8080 | ||
|
||
management.server.base-path=/actuator | ||
management.endpoints.web.exposure.include=metrics,health,prometheus | ||
management.endpoint.health.group.readiness.include[]=zeebeClient,operate | ||
management.endpoint.health.show-components=always | ||
management.endpoint.health.show-details=always | ||
|
||
camunda.client.operate.base-url=http://localhost:8081 | ||
camunda.client.zeebe.gateway-url=http://localhost:26500 | ||
camunda.client.zeebe.defaults.max-jobs-active=32 | ||
camunda.client.zeebe.execution-threads=10 | ||
camunda.client.zeebe.defaults.stream-enabled=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 13 additions & 2 deletions
15
connector-runtime/connector-runtime-application/src/main/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
management.context-path=/actuator | ||
management.endpoints.web.exposure.include=metrics,health,prometheus,loggers | ||
server.port=8080 | ||
|
||
management.server.base-path=/actuator | ||
management.endpoints.web.exposure.include=metrics,health,prometheus | ||
management.endpoint.health.group.readiness.include[]=zeebeClient,operate | ||
|
||
management.endpoint.health.show-components=always | ||
management.endpoint.health.show-details=always | ||
|
||
camunda.client.operate.base-url=http://localhost:8081 | ||
camunda.client.zeebe.gateway-url=http://localhost:26500 | ||
camunda.client.zeebe.defaults.max-jobs-active=32 | ||
camunda.client.zeebe.execution-threads=10 | ||
camunda.client.zeebe.defaults.stream-enabled=true |