You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+62-10
Original file line number
Diff line number
Diff line change
@@ -42,13 +42,13 @@ What do you need to do to start the runtime?
42
42
43
43
Check the [Installation guide](doc/InstallationGuide/README.md) for more information.
44
44
45
-
Check the [Administration guide.md](doc/AdministrationGuide%2FREADME.md) for an explanation of the functions available.
45
+
Check the [Administration guide.md](doc/AdministrationGuide/README.md) for an explanation of the functions available.
46
46
47
47
In a short overview, to enable a Cherry runtime in your cluster:
48
48
49
49
## Download the application
50
50
51
-
Download the Docker Image, or use the docker-compose given in the [docker-Cherry](docker-cherry/README.md)
51
+
Download the Docker Image, or use the docker-compose given in the [docker-Cherry](docker/README.md)
52
52
The image is available here.
53
53
54
54
```
@@ -62,16 +62,68 @@ Cherry needs:
62
62
* to save connectors and statistics
63
63
64
64
Check the [application.yaml](src/main/resources/application.yaml) file to see all parameters.
65
+
66
+
The connection use this approach https://github.com/camunda-community-hub/spring-zeebe?tab=readme-ov-file#configuring-camunda-8-connection
67
+
68
+
### Saas
69
+
Use
70
+
```yaml
71
+
camunda:
72
+
client:
73
+
mode: saas
74
+
auth:
75
+
client-id: <your client id>
76
+
client-secret: <your client secret>
77
+
cluster-id: <your cluster id>
78
+
region: <your cluster region>
79
+
```
80
+
81
+
### Self manage without Identity
82
+
83
+
```yaml
84
+
camunda:
85
+
client:
86
+
mode: simple
87
+
auth:
88
+
username: demo
89
+
password: demo
90
+
zeebe:
91
+
enabled: true
92
+
gateway-url: http://localhost:26500
93
+
base-url: http://localhost:8080
94
+
prefer-rest-over-grpc: false
95
+
```
96
+
97
+
## Self manage with Identity
98
+
99
+
````yaml
100
+
camunda:
101
+
client:
102
+
mode: oidc
103
+
auth:
104
+
client-id: <your client id>
105
+
client-secret: <your client secret>
106
+
zeebe:
107
+
enabled: true
108
+
gateway-url: http://localhost:26500
109
+
base-url: http://localhost:8080
110
+
prefer-rest-over-grpc: false
111
+
````
112
+
113
+
### Use parameter
65
114
It is possible to pass parameters as a variable, for example.
66
115
67
116
``
68
117
Environment:
69
-
- ZEEBE_CLIENT_BROKER_GATEWAY_ADDRESS=zeebe:26500
118
+
- CAMUNDA_CLIENT_MODE=saas
70
119
``
71
120
To connect a local engine in the same cluster.
72
121
122
+
123
+
### Database
124
+
73
125
An H2 database is configured by default to save information. Use a SQL database for a robust database.
74
-
Looks [docker-compose-cherry-postgres.yaml](docker-cherry/docker-compose-cherry-postgres.yaml) to see an example.
126
+
Looks [docker-compose-cherry-postgres.yaml](docker/docker-compose-cherry-postgres.yaml) to see an example.
75
127
76
128
Using an SQL database allows you to configure one Cherry pod and a farm of pods. Each pod accesses the same database, and statistics are shared between all pots through connectors.
77
129
@@ -113,7 +165,7 @@ If the connector defines the additional Cherry method, Inputs, Outputs, and Erro
113
165
The element template can be downloaded if the connector defines the additional Cherry methods or comes from the MarketPlace.
114
166
115
167
Open the ZIP file, and upload content on the Desktop modeler, path `resources\element-templates.
It's possible to upload the file on the Web Modeler.
119
171
@@ -131,7 +183,7 @@ Cherry runtime has more critical features for the developers:
131
183
132
184
The Cherry runtime manages execution, and many administrative functions are included: starting/stopping, changing the number of threads, and getting statistics on execution.
133
185
134
-
Check the [Developer guide](doc/DeveloperGuide%2FREADME.md)
186
+
Check the [Developer guide](doc/DeveloperGuide/README.md)
0 commit comments