1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-08 17:15:51 +02:00
tldr/pages/common/helm.md

38 lines
703 B
Markdown
Raw Normal View History

2018-10-18 02:11:08 +05:30
# helm
> A package manager for Kubernetes.
> Some subcommands such as `install` have their own usage documentation.
> More information: <https://helm.sh/>.
2018-10-18 02:11:08 +05:30
- Create a helm chart:
`helm create {{chart_name}}`
- Add a new helm repository:
2021-10-29 05:32:25 +03:00
`helm repo add {{repository_name}}`
2018-10-18 02:11:08 +05:30
- List helm repositories:
2025-07-20 01:33:14 +03:00
`helm repo {{[ls|list]}}`
2018-10-18 02:11:08 +05:30
- Update helm repositories:
2025-07-20 01:33:14 +03:00
`helm repo {{[up|update]}}`
2018-10-18 02:11:08 +05:30
- Delete a helm repository:
2025-07-20 01:33:14 +03:00
`helm repo {{[rm|remove]}} {{repository_name}}`
2018-10-18 02:11:08 +05:30
- Install a helm chart:
2021-10-29 05:32:25 +03:00
`helm install {{name}} {{repository_name}}/{{chart_name}}`
2018-10-18 02:11:08 +05:30
- Download helm chart as a tar archive:
2018-10-18 02:11:08 +05:30
`helm get {{chart_release_name}}`
- Update helm dependencies:
2025-07-20 01:33:14 +03:00
`helm {{[dep|dependency]}} {{[up|update]}}`