Difference between revisions of "Helm"

From John Freier
Jump to: navigation, search
Line 11: Line 11:
 
Install a helm chart
 
Install a helm chart
 
   helm install [project_name] [helm_chart_name]
 
   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]

Revision as of 10:37, 29 April 2022

Helm is a package manager for Kubernetes.

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]