All Projects → camunda-community-hub → zeebe-helm

camunda-community-hub / zeebe-helm

Licence: Apache-2.0 license
Public Zeebe K8s HELM Charts

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to zeebe-helm

gotway
☸️ Cloud native API Gateway powered with in-redis cache
Stars: ✭ 71 (+446.15%)
Mutual labels:  helm, cloud-native
K3sup
bootstrap Kubernetes with k3s over SSH < 1 min 🚀
Stars: ✭ 4,012 (+30761.54%)
Mutual labels:  helm, cloud-native
workshopctl
A tool to run workshops with
Stars: ✭ 38 (+192.31%)
Mutual labels:  helm, cloud-native
inspr
Inspr is an agnostic application mesh for simpler, faster, and securer development of distributed applications (dApps).
Stars: ✭ 49 (+276.92%)
Mutual labels:  helm, cloud-native
Kubernetes Vagrant Centos Cluster
Setting up a distributed Kubernetes cluster along with Istio service mesh locally with Vagrant and VirtualBox, only PoC or Demo use.
Stars: ✭ 1,750 (+13361.54%)
Mutual labels:  helm, cloud-native
Spring Cloud Dataflow
A microservices-based Streaming and Batch data processing in Cloud Foundry and Kubernetes
Stars: ✭ 753 (+5692.31%)
Mutual labels:  orchestration, cloud-native
vcluster
vcluster - Create fully functional virtual Kubernetes clusters - Each vcluster runs inside a namespace of the underlying k8s cluster. It's cheaper than creating separate full-blown clusters and it offers better multi-tenancy and isolation than regular namespaces.
Stars: ✭ 1,360 (+10361.54%)
Mutual labels:  helm, cloud-native
Service Fabric
Service Fabric is a distributed systems platform for packaging, deploying, and managing stateless and stateful distributed applications and containers at large scale.
Stars: ✭ 2,874 (+22007.69%)
Mutual labels:  orchestration, cloud-native
Okteto
Develop your applications directly in your Kubernetes Cluster
Stars: ✭ 1,937 (+14800%)
Mutual labels:  helm, cloud-native
Kapitan
Generic templated configuration management for Kubernetes, Terraform and other things
Stars: ✭ 1,383 (+10538.46%)
Mutual labels:  helm, orchestration
Zenko
Zenko is the open source multi-cloud data controller: own and keep control of your data on any cloud.
Stars: ✭ 353 (+2615.38%)
Mutual labels:  helm, cloud-native
camunda-cloud-helm
Camunda Platform 8 Self-Managed Helm charts
Stars: ✭ 41 (+215.38%)
Mutual labels:  helm, zeebe
Devspace
DevSpace - The Fastest Developer Tool for Kubernetes ⚡ Automate your deployment workflow with DevSpace and develop software directly inside Kubernetes.
Stars: ✭ 2,559 (+19584.62%)
Mutual labels:  helm, cloud-native
kubecloud
Kubecloud is a multi-cloud container cloud management platform
Stars: ✭ 48 (+269.23%)
Mutual labels:  orchestration, cloud-native
rocketmq-site
Apache RocketMQ is a cloud native messaging and streaming platform, making it simple to build event-driven applications.
Stars: ✭ 41 (+215.38%)
Mutual labels:  cloud-native
helm-charts
📈 Helm charts from Adfinis
Stars: ✭ 31 (+138.46%)
Mutual labels:  helm
inclavare-containers
A novel container runtime, aka confidential container, for cloud-native confidential computing and enclave runtime ecosystem.
Stars: ✭ 510 (+3823.08%)
Mutual labels:  cloud-native
Docker-Kubernetes
Basics of Docker and Kubernetes
Stars: ✭ 18 (+38.46%)
Mutual labels:  orchestration
helm-chart
Makes develping the chart boilerplate easier.
Stars: ✭ 31 (+138.46%)
Mutual labels:  helm
kubernetes the easy way
Automating Kubernetes the hard way with Vagrant and scripts
Stars: ✭ 22 (+69.23%)
Mutual labels:  orchestration

REPLACED WITH MONO REPO


Community ExtensionLifecycle: IncubatingLicense

Zeebe Kubernetes HELM Charts

Zeebe Kubernetes HELM Charts

This repository host Zeebe HELM charts for Kubernetes, this charts can be accessed by adding the following HELM repo to your HELM setup:

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

There are three main charts which are represented in the following image: HELM CHARTS

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

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 hosting 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 site for more information.

Installing Charts

You can install these Helm Charts by running:

helm install --name <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 delete <YOUR HELM RELEASE NAME> --no-hooks --purge

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>

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/zeebe-io/zeebe-helm/

Releasing these Charts

These charts are being released internally at: http://chartmuseum-jx.34.67.22.199.nip.io/charts/ where you can find the latest builds, which are periodically updated in this repository.

In order to release to this public-facing repository hosted at: http://helm.zeebe.io you need to download artifacts hosted at http://chartmuseum-jx.34.67.22.199.nip.io/charts/ and then run the following command to generate clean the internal charts and fetch the latest version from internal:

./release.sh

This script will fetch remote charts, clean them from unneeded files and run helm repo index --url http://helm.camunda.io . to update the Helm index.

Then you need to add and commit all the changes to push the new version to this repository.

git add .
git commit -m "updating charts"

And then push the new files plus the updated index.

git push
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].