-
Notifications
You must be signed in to change notification settings - Fork 243
Repository quick introduction
like hud.docker.com where in we will get readily available images for tech stack, the same way if you want to get readily available helm charts refer https://artifacthub.io/packages/search
Through command line also we can search the charts, we can use helm search command
- helm search hub mysql
this command list all the charts for mysql in hub repository which is https://artifacthub.io/packages/search
- helm search repo bitnami/mysql
if you want to search in particular repository then we need to use the above, before this we need to register repository details in helm by using the command helm repo add bitnami https://charts.bitnami.com/bitnami
and then to check whether repository added to helm or not use helm repo list
after which if you like to install the helm chart directly taking charts from helm hub or repository use helm install my-release bitnami/mysql