mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-15 15:55:47 +02:00
helm: add page (#2349)
This commit is contained in:
parent
53b0d009af
commit
f49d0f7965
1 changed files with 35 additions and 0 deletions
35
pages/common/helm.md
Normal file
35
pages/common/helm.md
Normal file
|
@ -0,0 +1,35 @@
|
|||
# helm
|
||||
|
||||
> Helm is a package manager for Kubernetes.
|
||||
|
||||
- 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`
|
Loading…
Add table
Reference in a new issue