helm repo add bitname https://charts.bitnami.com/bitnami
# Install a chart with my-values.yaml to override with custom values
helm install --values my-values.yaml <chartname>
helm install <custom_name> --values my-values.yaml <chartname>
helm install mongodb --values my-helm-values.yaml bitnami/mongodb
# Only changed items that are changed
# Roll back to previous version
helm rollback <chartname>
# Similar to install with --values but set a specific value on CLI
helm install --set version=2.0.0
# Uninstall a deployed chart