giskou / camunda-cloud-helm

Contains all camunda cloud related helm charts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Community ExtensionLifecycle: IncubatingLicenseArtifact Hub

camunda-cloud-helm

The camunda-cloud helm mono-repo, contains and host all camunda-cloud related helm charts.

The charts can be accessed by adding the following HELM repo to your HELM setup:

> helm repo add camundacloud https://helm.camunda.io
> helm repo update

The charts are represented in the following image: HELM CHARTS

You can consume each individual chart, or use the zeebe-full-helm chart which will install all the components, including an NGINX Ingress Controller.

Currently we host the following charts:

Follow the instructions in the Zeebe docs to install Zeebe to a K8s cluster using these charts.

Each Chart contains it's own configurations and parameters, you can visit each chart README for more information.

Note check the Zeebe Helm Profiles repository for different configurations for your clusters, such as Dev, HA, etc. Feel free to contribute with your own profiles if you want to

Installing Charts

You can install these Helm Charts by running:

helm install <YOUR HELM RELEASE NAME> zeebe/zeebe-full-helm

This command will install all Zeebe Components that are provided by the zeebe-full-helm chart.

Uninstalling Charts

You can remove these charts by running:

helm uninstall <YOUR HELM RELEASE NAME>

Notice that all the services and pods will be deleted, but not the Persistence Volume Claims which are used to hold the storage for the data generated by the cluster and ElasticSearch. In order to free up the storage you need to manually delete all the Persistent Volume Claims. You can do this by running:

kubectl get pvc

Then delete the ones that you don't want to keep:

kubectl delete pvc <PVC ids here>

Or delete the related kubernetes namespace, which contains the resources.

Issues

Please create new issues if you find problems with these charts. This repository is hosted using GitHub Pages and the source code repository can be found here: https://github.com/camunda-community-hub/camunda-cloud-helm

Releasing these Charts

These charts are build and linted on every push to the main branch. If the chart version changes a new github release with the the corresponding packaged helm chart is created. The charts are hosted via github pages and use the release artifacts. We use the chart-releaser-action to release the charts.

About

Contains all camunda cloud related helm charts

License:Apache License 2.0


Languages

Language:Mustache 100.0%