Using Helm to Deploy a Chart Solution
Using Helm to Deploy a Chart Solution
-
You can install the same
helmchart multiple times on the same cluster. -
helm search hub wordpressis used to findwordpresscharts. -
A good command to search for the
consulpackage:
helm search hub consul
- How to add the
binamihelmchart repository to the Control Plane node:helm repo add bitnami https://charts.bitnami.com/bitnami - Then to search through the repository, run this command:
helm search repo wordpress -
To find how many
helmcharts there, use thehelm repo listcommand. - To deploy an
apacheapplication on the cluster, run this command:helm install amaze-surf bitnami/apache - To find the version of
apachedeployed, run the following:helm list -
Check the
APP VERSIONof the release. -
To find the amount of releases there are of a particular application, run
helm list -
Uninstall an application with
helm uninstall <release> - An example of removing the
hashicorprepository:helm repo remove hashicorp