1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 16:55:25 +02:00
tldr/pages/common/helm.md
Lena 0fddee2272
pages/*: reword descriptions to comply with the style guide (#11507)
* pages/*: reword descriptions to comply with the style guide

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-15 09:55:25 +05:30

657 B

helm

A package manager for Kubernetes. Some subcommands such as install have their own usage documentation. More information: https://helm.sh/.

  • Create a helm chart:

helm create {{chart_name}}

  • Add a new helm repository:

helm repo add {{repository_name}}

  • List helm repositories:

helm repo list

  • Update helm repositories:

helm repo update

  • Delete a helm repository:

helm repo remove {{repository_name}}

  • Install a helm chart:

helm install {{name}} {{repository_name}}/{{chart_name}}

  • Download helm chart as a tar archive:

helm get {{chart_release_name}}

  • Update helm dependencies:

helm dependency update