Skip to the content.

Module structure

chart.yaml

values.yaml

templates

test

Helm.hub and tools

Commands

helm repo add bitnami https://charts.bitnami.com/bitnami
helm search repo bitnami
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/mysql
helm status myrelease # shows all the details about your release
helm list # shows revisions, what has been installed, versions
helm rollback mydelease 1 # rollsback to revision 1
helm delete myrelease # deletes all what you deployed, all of it, keeping track of what has been deployed
helm uninstall mysql-1612624192
—dry-run # to see the incoming changes
helm install testrelease .

Architecture

Links