Difference between revisions of "Helm"
From John Freier
Line 2: | Line 2: | ||
Things I found out while working with Helm. | Things I found out while working with Helm. | ||
− | + | - You do not need name spaces. | |
Revision as of 09:38, 29 April 2022
Helm is a package manager for Kubernetes.
Things I found out while working with Helm. - You do not need name spaces.
Process a single manifest and see the results.
helm template -s templates/application-service.yaml app-project
List all helm installs
helm list
Install a helm chart
helm install [project_name] [helm_chart_name] example: helm install helm-test test-project
Update a helm chart
helm upgrade [project_name] [helm_chart_name]
Remove a helm chart
helm upgrade [project_name]