Helm is a package manager for Kubernetes. Helm enables you to deploy various Kubernetes applications on your Kubernetes cluster as helm charts.
In order to use Helm to install applications as helm charts, you need to first install the Helm application binary on a machine that has access to the Kubernetes cluster. It may be installed either via a script, as shown below, or, via your operating system specific package manager such as yum
, apt
, brew.
Refer to the documentation here to find out more about package manager specific instructions to deploy helm.
To install Helm 3 using curl, run the following command on your Linux machine. This command will fetch the helm 3 package manager binaries and install them on your machine.
xxxxxxxxxx
$ curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3
$ chmod 700 get_helm.sh
$ ./get_helm.sh
This command will install the Helm package manager on your machine. Once done, you can now use the helm CLI to start installing helm charts on your Kubernetes cluster.