2018-10-17 21:41:08 +01:00
|
|
|
# helm
|
|
|
|
|
|
|
|
> Helm is a package manager for Kubernetes.
|
2019-06-03 01:06:36 +01:00
|
|
|
> More information: <https://helm.sh/>.
|
2018-10-17 21:41:08 +01:00
|
|
|
|
|
|
|
- Create a helm chart:
|
|
|
|
|
|
|
|
`helm create {{chart_name}}`
|
|
|
|
|
|
|
|
- Add a new helm repository:
|
|
|
|
|
|
|
|
`helm repo add {{repo_name}}`
|
|
|
|
|
|
|
|
- List helm repositories:
|
|
|
|
|
|
|
|
`helm repo list`
|
|
|
|
|
|
|
|
- Update helm repositories:
|
|
|
|
|
|
|
|
`helm repo update`
|
|
|
|
|
|
|
|
- Delete a helm repository:
|
|
|
|
|
|
|
|
`helm repo remove {{repo_name}}`
|
|
|
|
|
|
|
|
- Install a helm chart:
|
|
|
|
|
|
|
|
`helm install {{repo_name}}/{{chart_name}}`
|
|
|
|
|
|
|
|
- Download helm chart as a tar archive:
|
|
|
|
|
|
|
|
`helm get {{chart_release_name}}`
|
|
|
|
|
|
|
|
- Update helm dependencies:
|
|
|
|
|
|
|
|
`helm dependency update`
|