Helm is Package Manager for Kubernetes. Helm packages are called “Charts”. Charts allow you to deploy various software on Kubernetes cluster.
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
Install WordPress in Kubernetes
Deploy MySQL Server in Kubernetes using Helm
See Kubernetes
Leave a Reply