Posted in

Helm Kubernetes Package Manager

Helm is Package Manager for Kubernetes. Helm packages are called “Charts”. Charts allow you to deploy various software on Kubernetes cluster.

https://helm.sh

To install helm, run

curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get > get_helm.sh
bash get_helm.sh

If you are on Ubuntu, you can install from snap

snap install helm --classic

To update helm repos, run

helm repo update

To deploy MySQL chart to Kubernetes, run

helm install stable/mysql
Visited 1 times, 1 visit(s) today

Leave a Reply

Your email address will not be published. Required fields are marked *