Skip to content

Commit

Permalink
fix(properties): correct properties for 8.6 docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
chillleader committed Feb 10, 2025
1 parent 4fd0307 commit 94f9d55
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 4 deletions.
13 changes: 13 additions & 0 deletions bundle/default-bundle/src/main/resources/application.properties
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server.port=8080

management.context-path=/actuator
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
Expand All @@ -9,7 +9,7 @@ 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.defaults.worker-threads=10
camunda.client.zeebe.execution-threads=10
camunda.client.zeebe.defaults.stream-enabled=true

# Config for use with docker-compose.yml
Expand Down
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

0 comments on commit 94f9d55

Please sign in to comment.