generated from camunda-community-hub/zeebe-worker-java-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Manage when type change in a worker/connector * first version * prepare synchronization * manage changement in type (update correctly the database) * docker-compose is working * Test docker compose items * Test docker compose items * Fix orthography errors * Different fix in May --------- Co-authored-by: Dave Paroulek <[email protected]>
- Loading branch information
1 parent
ab1834b
commit fdeea26
Showing
36 changed files
with
792 additions
and
342 deletions.
There are no files selected for viewing
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
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,21 @@ | ||
## Image versions ## | ||
CAMUNDA_CONNECTORS_VERSION=0.19.1 | ||
CAMUNDA_OPTIMIZE_VERSION=3.10.0 | ||
CAMUNDA_PLATFORM_VERSION=8.2.4 | ||
CAMUNDA_WEB_MODELER_VERSION=8.2.2 | ||
ELASTIC_VERSION=7.17.9 | ||
KEYCLOAK_SERVER_VERSION=19.0.3 | ||
MAILPIT_VERSION=v1.5.4 | ||
POSTGRES_VERSION=14.5-alpine | ||
HOST=localhost | ||
|
||
## Configuration ## | ||
# By default the zeebe api is public, when setting this to `identity` a valid zeebe client token is required | ||
ZEEBE_AUTHENTICATION_MODE=none | ||
ZEEBE_CLIENT_ID=zeebe | ||
ZEEBE_CLIENT_SECRET=zecret | ||
|
||
# Set to 'true' to enable resource based authorizations for users and groups | ||
# This can be used to limit access for users or groups to view/update specific | ||
# processes and decisions in Operate and Tasklist | ||
RESOURCE_AUTHORIZATIONS_ENABLED=false |
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,36 @@ | ||
# Docker compose | ||
|
||
This section shows different docker compose example. Feel free to copy and adapt them to your use case | ||
|
||
There is two flavor: | ||
* the default one, using a H2 database | ||
* the post | ||
|
||
## H2 database | ||
|
||
Start a complete cherry plus zeebe platform | ||
|
||
```shell | ||
docker-compose -f docker-compose-core.yaml -f docker-compose-cherry.yaml up -d | ||
``` | ||
|
||
To remove the different container created (use `stop` instead of `down` if you just want to stop and don't remove the container) | ||
|
||
```shell | ||
docker-compose -f docker-compose-core.yaml -f docker-compose-cherry.yaml down -v | ||
``` | ||
|
||
|
||
## Postgres | ||
|
||
This example used a postgres database to store information (statistics, upload connectors) | ||
|
||
```shell | ||
docker-compose -f docker-compose-core.yaml -f docker-compose-cherry-postgres.yaml up -d | ||
``` | ||
|
||
To remove the different container created (use `stop` instead of `down` if you just want to stop and don't remove the container) | ||
|
||
```shell | ||
docker-compose -f docker-compose-core.yaml -f docker-compose-cherry-postgres.yaml down -v | ||
``` |
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,2 @@ | ||
# add secrets per line in the format NAME=VALUE | ||
# WARNING: ensure not to commit changes to this file |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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,23 @@ | ||
version: "3" | ||
services: | ||
|
||
cherryruntime: | ||
image: ghcr.io/camunda-community-hub/zeebe-cherry-runtime:latest | ||
container_name: cherryruntime | ||
ports: | ||
- "9081:9081" | ||
environment: | ||
- ZEEBE_CLIENT_BROKER_GATEWAY_ADDRESS=zeebe:26500 | ||
- ZEEBE_CLIENT_SECURITY_PLAINTEXT=true | ||
# - ZEEBE_CLIENT_CLOUD_REGION= | ||
# - ZEEBE_CLIENT_CLOUD_CLUSTERID= | ||
# - ZEEBE_CLIENT_CLOUD_CLIENTID= | ||
# - ZEEBE_CLIENT_CLOUD_CLIENTSECRET= | ||
- LOGGING_LEVEL_ROOT=INFO | ||
networks: | ||
- camunda-platform | ||
depends_on: | ||
- zeebe | ||
|
||
networks: | ||
camunda-platform: |
Oops, something went wrong.