{% include "/partials/helm/description.md" %}
The full instructions and basic commands to get started with helm can be found here: https://docs.helm.sh/using_helm/#quickstart
For simplicity here are are few commands that you can use to install helm
on your system:
brew install kubernetes-helm
wget https://storage.googleapis.com/kubernetes-helm/helm-v2.9.1-linux-amd64.tar.gz tar -zxvf helm-v2.9.1-linux-amd64.tar.gz mv linux-amd64/helm /usr/local/bin/helm
helm init
Once helm
is installed you should be able to run the command helm list
without errors
Charts are the packaging format used by helm. A chart is a collection of files that describe a related set of Kubernetes resources.
For example in CORD we are using charts to define every single components, such as:
You can find the full chart documentation here: https://docs.helm.sh/developing_charts/#charts