In this exercise you will get familliar with helm and how it makes your life easier.
Go to the following link and install helm: https://helm.sh/docs/intro/install/
To see if everything is set up properly run the following command:
$ helm version
version.BuildInfo{Version:"v3.2.1", GitCommit:"fe51cd1e31e6a202cba7dead9552a6d418ded79a", GitTreeState:"clean", GoVersion:"go1.13.10"}
Lets add an repository! Use the repo located at https://kubernetes-charts.storage.googleapis.com
Use the helm commamd add repo. Call this repo stable. After you added it, use the search command and see what is available.
Now lets install a helm chart into our cluster. Install the mysql chart from the stable repo.
Check out what happens!
Try to see all releases with the list command.
Uninstall the helm chart
Check the solutions solutions/3.md