Skip to content

Commit

Permalink
docs: updated README to version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
VonDerBeck committed Oct 25, 2024
1 parent ae0da4c commit 74952fb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Add the Maven dependency to your `pom.xml`
<dependency>
<groupId>io.zeebe.redis</groupId>
<artifactId>zeebe-redis-connector</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
```

Expand Down Expand Up @@ -142,7 +142,7 @@ See [connector-csharp/README.md](https://github.com/camunda-community-hub/zeebe-
A docker image is published to [GitHub Packages](https://github.com/orgs/camunda-community-hub/packages/container/package/zeebe-with-redis-exporter) that is based on the Zeebe image and includes the Redis exporter (the exporter is enabled by default).

```
docker pull ghcr.io/camunda-community-hub/zeebe-with-redis-exporter:8.5.1-1.0.0
docker pull ghcr.io/camunda-community-hub/zeebe-with-redis-exporter:8.6.3-1.0.1
```

For a local setup, the repository contains a [docker-compose file](docker/docker-compose.yml). It starts a Zeebe broker with the Redis exporter.
Expand All @@ -158,12 +158,12 @@ docker-compose up -d
1. Download the latest [Zeebe distribution](https://github.com/camunda-cloud/zeebe/releases) _(camunda-zeebe-%{VERSION}.tar.gz
)_

1. Download the latest [exporter JAR](https://github.com/camunda-community-hub/zeebe-redis-exporter/releases) (_zeebe-redis-exporter-1.0.0-jar-with-dependencies.jar_)
1. Download the latest [exporter JAR](https://github.com/camunda-community-hub/zeebe-redis-exporter/releases) (_zeebe-redis-exporter-1.0.1-jar-with-dependencies.jar_)

1. Copy the exporter JAR into the broker folder `~/zeebe-broker-%{VERSION}/exporters`.

```
cp exporter/target/zeebe-redis-exporter-1.0.0-jar-with-dependencies.jar ~/zeebe-broker-%{VERSION}/exporters/
cp exporter/target/zeebe-redis-exporter-1.0.1-jar-with-dependencies.jar ~/zeebe-broker-%{VERSION}/exporters/
```
1. Add the exporter to the broker configuration `~/zeebe-broker-%{VERSION}/config/application.yaml`:
Expand All @@ -174,7 +174,7 @@ docker-compose up -d
exporters:
redis:
className: io.zeebe.redis.exporter.RedisExporter
jarPath: exporters/zeebe-redis-exporter-1.0.0-jar-with-dependencies.jar
jarPath: exporters/zeebe-redis-exporter-1.0.1-jar-with-dependencies.jar
```
1. Set the environment variable `ZEEBE_REDIS_REMOTE_ADDRESS` to your Redis URL.
Expand Down Expand Up @@ -267,14 +267,14 @@ networks:
services:
zeebe:
container_name: zeebe_broker
image: camunda/zeebe:8.5.1
image: camunda/zeebe:8.6.3
environment:
- ZEEBE_REDIS_REMOTE_ADDRESS=redis://redis:6379
ports:
- "26500:26500"
- "9600:9600"
volumes:
- ../exporter/target/zeebe-redis-exporter-1.0.0-jar-with-dependencies.jar:/usr/local/zeebe/exporters/zeebe-redis-exporter.jar
- ../exporter/target/zeebe-redis-exporter-1.0.1-jar-with-dependencies.jar:/usr/local/zeebe/exporters/zeebe-redis-exporter.jar
- ./application.yaml:/usr/local/zeebe/config/application.yaml
networks:
- zeebe_network
Expand Down

0 comments on commit 74952fb

Please sign in to comment.