I have tried to register demo exporter for Camunda installation 8.3 in aks cluster . I am using helm chart . I have already tried using initContainer but zeebe is not getting up .
1)The JAR artifact has to be deployed to /usr/local/zeebe/lib/
. – But I am not able to copy the Jar artifact as it is read-only filesystem .
2)After that you need to register your zeebe exporter by modifying application.yaml in /usr/local/zeebe/config/application.yaml. – “Not able to modify it due to same read-only filesystem”
For example add this:
zeebe:
broker:
exporters:
debuglog:
className: io.camunda.zeebe.broker.exporter.debug.DebugLogExporter
args:
logLevel: debug
prettyPrint: false
your_exporter:
className: io.camunda.zeebe.exporters.your_exporter
jarPath: /usr/local/zeebe/lib/your_exporter.jar
args:
logLevel: debug
prettyPrint: false