Commands
repo
# add repository
# helm repo add [repository_name] [url]
helm repo add bitnami https://charts.bitnami.com/bitnami

# list repository
helm repo list

# get the latest list of charts
helm repo update
            
install
  • Install from
  • # create a release and generate a name
    # helm install [chart_name] --generate-name
    helm install bitnami/mysql --generate-name
    
    # create a release with a specific name
    # helm install [release_name] [chart_name]
    helm install happy-panda bitnami/wordpress
    
    # uninstall a release
    # helm uninstall [release_name]
    helm uninstall mysql-1612624192
                
    list
    # list releases
    helm list
                
    search
    # list charts in a repository
    # helm search repo [repositoryName or chartName]
    helm search repo bitnami
    helm search repo wordpress
    
    # search a chart in the repositories on Artifact Hub
    # helm search hub [chartName]
    helm search hub wordpress
                
    show
    # display chart information
    # helm show chart [chartName]
    helm show chart bitnami/mysql
    
    # get all information about the chart
    # helm show all [chartName]
    helm show all bitnami/mysql
                
    get
    # get values from a release
    # helm get values [releaseName]
    helm get values mysql-1643660072
                
    status
    # get the information of a release
    # helm status [releaseName]
    helm status mysql-1643660072
                
    Reference
  • Documentation