Skip to content

Latest commit

 

History

History
43 lines (25 loc) · 924 Bytes

File metadata and controls

43 lines (25 loc) · 924 Bytes

helm exercises

In this exercise you will get familliar with helm and how it makes your life easier.

Install helm

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"}

1

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.

2

Now lets install a helm chart into our cluster. Install the mysql chart from the stable repo.

Check out what happens!

3

Try to see all releases with the list command.

4

Uninstall the helm chart

5

Check the solutions solutions/3.md