Skip to content

Latest commit

 

History

History
65 lines (40 loc) · 2.32 KB

README.md

File metadata and controls

65 lines (40 loc) · 2.32 KB

Optimize Demo

Camunda Micronaut BPM Demo with an example Process running in the Camunda Platform, which is connected to Camunda Optimize.

Table of Contents

✨Features

🗺 Optimize

Have a look at the running instance: Camunda Optimize

You could login with username: admin and password: pw.

To configure Camunda Optimize have a look at the docs.

⚙️ Camunda Platform

Have a look at the running instance: Camunda Platform

You could login with username: admin and password: pw.

If you want to know more about the micronaut camunda bpm integration have a look at this Blog.

🔨 Camunda Worker

Using the external task pattern to work on a service task.

If you want to know more about the micronaut camunda external client integration have a look at this GitHub Repo.

🚀Getting Started

Place the Camunda Optimize licenses under licenses/OptimizeLicense.txt.

☸️Kubernetes

kubectl create configmap optimize-licenses --from-file licenses/OptimizeLicense.txt

To pull the Camunda Optimize docker image you must be logged into the camunda registry.

E.g. with a pull secret:

kubectl create secret docker-registry camunda-registry \
        --docker-server=registry.camunda.cloud \
        --docker-username=<username> \
        --docker-password=<password> \
        --namespace=default

To start the kubernetes pods run kubectl apply -f kubernetes/ --recursive.

🐳Docker

Start the containers with the docker-compose: docker-compose up