Hi Team,
Could you please review below and help.
Title:Camunda8 self managed EKS setup bpmn deployment from spring boot application reference
Details:
I am using camunda 8.5.x in self managed setup where I have deployed camunda8 to EKS. I use identity and key clock for authetication and I am able to deploy my bpmn to my zeebe server frm web modeler and desktop modeler.
Question: As per my requirement I need to deploy bpmn and dmn file to zeebe server using sprint boot application. could you please share a documentation anf github or any other reference to achieve this as per latest approach.
@Raj_Kishun_Singh You can try like this using zeebe client to deploy the process via Zeebe Grpc API.
void deployNewProcess(InputStream resourceStream, String resourceName) {
var deploymentEvent = zeebeClient.newDeployResourceCommand()
.addResourceStream(resourceStream, resourceName)
.send().join();
}