tar -zxvf helm-v3.11.3-linux-amd64.tar.gz
cp linux-amd64/helm /usr/local/bin/
helm repo add bitnami https://charts.bitnami.com/bitnami
helm search repo bitnami # list the charts you can install
helm repo update # Make sure we get the latest list of charts
helm install bitnami/mysql --generate-name
helm show chart bitnami/mysql
helm show all bitnami/mysq l # get all information about the chart.
helm list
helm uninstall mysql-1612624192 # uninstall a release
helm status mysql-1612624192 # release history
helm get -h # reading the Help Text