From the course: Certified Kubernetes Application Developer (CKAD) Cert Prep

Unlock this course with a free trial

Join today to access over 25,300 courses taught by industry experts.

Using Helm

Using Helm

- Next task is to use Helm to install the bitnami/mysql package from the charts.bitnami.com/bitnami repository. So how does that work? Well, first you need to make sure that Helm is installed. On the exam, that would already be the case. And as you have only removed minikube and not everything on your Virtual Machine, you should have Helm installed already. So installing Helm is not the issue here. The issue here is Helm repo add Bitnami https://charts.bitnami.com/bitnami. And oh, that's even better, Bitnami already exists with the same configuration, skipping. Well, that makes it easier. And then we just have to use Helm install bitnami/mysql, and let's add generate name to that. That will generate name and install the application. So kubectl get all should now show you the Bitnami application installed as a stateful set. This is work in progress. And just let it be, it will finish. This is all what you needed to do for this task.

Contents