Skip to content

CluedIn-io/Charts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Charts

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.

Using charts from the CluedIn chart repository

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 list

Pull latest releases from the remote collection.

$ helm repo update

Examples of Helm usage

Search repositories for charts called cluedin-platform in the chart repository and display the versions.

$ helm search repo cluedin-platform

Search repositories for charts called cluedin-platform but include pre-release/development versions of the charts.

$ helm search repo cluedin-platform --devel

Installing the chart into a release called cluedin-platform into the cluster.

$ helm install cluedin-platform cluedin/cluedin-platform

Installing with a custom values.yaml.

$ helm install cluedin-platform cluedin/cluedin-platform --values values.yaml

Installing a specific version of the chart.

$ helm install cluedin-platform cluedin/cluedin-platform --version 1.0.0

Cleanup

List existing releases installed on the cluster.

$ helm ls -a -n cluedin

Uninstall the cluedin-platform release from the cluster.

$ helm uninstall cluedin-platform

Remove cluedin repository from your local repository collection.

$ helm repo rm cluedin