Skip to content

Repository quick introduction

Deekshith SN edited this page Apr 8, 2021 · 1 revision

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

  1. helm search hub mysql

this command list all the charts for mysql in hub repository which is https://artifacthub.io/packages/search

  1. 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