Helm/Camunda: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
(Created page with " helm repo add camunda https://helm.camunda.io helm repo update helm repo list ==Config== <syntaxhighlight lang="properties"> export KUBECONFIG="${HOME}/.kube/dev-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/gcp-kubeconfig.yaml" export KUBECONFIG="${HOME}/.kube/config" </syntaxhighlight> ==Install== ==Uninstall== <syntaxhighlight lang="bash"> helm uninstall -n camunda camunda kubectl delete namespace camunda </syntaxhighlight> ==Playground== ==References== {|...")
 
Line 24: Line 24:
| valign="top" |
| valign="top" |
* [https://stackoverflow.com/questions/75596795/ Helm » Pass YAML/JSON using <code>stdin</code>]
* [https://stackoverflow.com/questions/75596795/ Helm » Pass YAML/JSON using <code>stdin</code>]
* [https://artifacthub.io/packages/helm/camunda/camunda-platform Helm » Camunda » Platform]
* [https://helm.camunda.io/  Helm » Camunda » Install]
* [https://helm.camunda.io/  Helm » Camunda » Install]
* [https://github.com/camunda/camunda-platform-helm Helm » Camunda » SCM]
* [https://github.com/camunda/camunda-platform-helm Helm » Camunda » SCM]

Revision as of 08:31, 6 June 2024

helm repo add camunda https://helm.camunda.io
helm repo update
helm repo list

Config

export KUBECONFIG="${HOME}/.kube/dev-kubeconfig.yaml"
export KUBECONFIG="${HOME}/.kube/gcp-kubeconfig.yaml"
export KUBECONFIG="${HOME}/.kube/config"

Install

Uninstall

helm uninstall -n camunda camunda
kubectl delete namespace camunda

Playground

References