This repository contains a collection of CluedIn Helm charts that can be used to install the CluedIn application into a Kubernetes cluster.
Information on Helm and how to use it can be found here: https://helm.sh/docs/intro/using_helm/
Current charts:
- CluedIn - The whole cluedin application + all dependant services.
Before you can install the CluedIn chart you need to add the chart repository to your local collection so that Helm knows where to retrieve the chart from.
Adding the cluedin chart repository to your local repository collection.
$ helm repo add cluedin https://cluedin-io.github.io/Charts/List all repositories currently installed.
$ helm repo listPull latest releases from the remote collection.
$ helm repo updateSearch repositories for charts called cluedin-platform in the chart repository and display the versions.
$ helm search repo cluedin-platformSearch repositories for charts called cluedin-platform but include pre-release/development versions of the charts.
$ helm search repo cluedin-platform --develInstalling the chart into a release called cluedin-platform into the cluster.
$ helm install cluedin-platform cluedin/cluedin-platformInstalling with a custom values.yaml.
$ helm install cluedin-platform cluedin/cluedin-platform --values values.yamlInstalling a specific version of the chart.
$ helm install cluedin-platform cluedin/cluedin-platform --version 1.0.0List existing releases installed on the cluster.
$ helm ls -a -n cluedinUninstall the cluedin-platform release from the cluster.
$ helm uninstall cluedin-platformRemove cluedin repository from your local repository collection.
$ helm repo rm cluedin