Helm Charts for Zeebe Only (ie. Community Use)

Hi!

I know of the Camunda-Platform helm chart, but that pulls in all of the other Camunda components (Identity, Operate, etc) which are not under the Zeebe “Source Available” license.

Is there a helm chart that just pulls in the gateway and broker so that an organization could use just the Community Use portions? Or a recommended “Zeebe Only” values file that could make things easy for someone starting out?

Hi @GotnOGuts - that’s actually a great suggestion. I’ll bring that feedback to the team! I don’t think we have an existing values.yaml file that is just the OSS components, but it is as easy as setting enabled: false for each of the source-available products. For instance, a simple configuration could look like this (based on our KIND example):

global:
  identity:
    auth:
      enabled: false

identity:
  enabled: false

optimize:
  enabled: false

connectors:
  enabled: false

operate:
  enabled: false

tasklist:
  enabled: false

zeebe:
  clusterSize: 1
  partitionCount: 1
  replicationFactor: 1
  pvcSize: 10Gi

zeebe-gateway:
  replicas: 1

elasticsearch:
  replicas: 1
  clusterHealthCheckParams: "wait_for_status=yellow&timeout=1s"
  volumeClaimTemplate:
    accessModes: [ "ReadWriteOnce" ]
    storageClassName: "standard"
    resources:
      requests:
        storage: 15Gi
1 Like