Deploy (existing) Apps with HelmPack

You can use Helmarrow-up-right, the Kubernetes package installer which manages existing Kubernetes Chartsarrow-up-right to deploy ready to use kube apps and write your own charts for your own apps.

To install Helm, please refer to the download pagearrow-up-right and install the appropriate package for your OS and refer to Helm Quick Start guidearrow-up-right.

On Mac you can install Helm client and the server component “Tiller" with:

$ brew install kubernetes-helm

$ helm init

$ helm repo update

And search for existing apps, e.g. with:

$ helm search

NAME VERSIONDESCRIPTION

stable/acs-engine-autoscaler0.1.0 Scales worker nodes within agent pools

stable/artifactory 5.4.1 Universal Repository Manager supporting

stable/aws-cluster-autoscaler0.2.2 Scales worker nodes within autoscaling groups.  

To search for an existing app, e.g. Minio, you can do:

And you can deploy for instance Minio with:

And in the Dashboard you can access the Minio Browser (under discovery and load balancing you’ll find the link).

To delete the app, you’ve to find the release name with:

Note: we recommend to refer to the official Helm documentationarrow-up-right and learn more about Helm and how to write your own Chartsarrow-up-right and more.

Last updated