2018-10-17 21:41:08 +01:00
|
|
|
# helm
|
|
|
|
|
2023-11-15 04:25:25 +00:00
|
|
|
> A package manager for Kubernetes.
|
|
|
|
> Some subcommands such as `install` have their own usage documentation.
|
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:
|
|
|
|
|
2021-10-29 03:32:25 +01:00
|
|
|
`helm repo add {{repository_name}}`
|
2018-10-17 21:41:08 +01:00
|
|
|
|
|
|
|
- List helm repositories:
|
|
|
|
|
|
|
|
`helm repo list`
|
|
|
|
|
|
|
|
- Update helm repositories:
|
|
|
|
|
|
|
|
`helm repo update`
|
|
|
|
|
|
|
|
- Delete a helm repository:
|
|
|
|
|
2021-10-29 03:32:25 +01:00
|
|
|
`helm repo remove {{repository_name}}`
|
2018-10-17 21:41:08 +01:00
|
|
|
|
|
|
|
- Install a helm chart:
|
|
|
|
|
2021-10-29 03:32:25 +01:00
|
|
|
`helm install {{name}} {{repository_name}}/{{chart_name}}`
|
2018-10-17 21:41:08 +01:00
|
|
|
|
pages*: fix brand and technical names (#12145)
* pages*: fix Python, Java, pacman, apt, *zip*, xz, tar, git, RPM and grep names
* pages*: fix brand and technical names
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
* fluxctl, gitmoji, in-toto-run, osv-scanner: replace `git` with Git
* bzegrep: enclose egrep with backticks
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* git-bug: use Git instead of `git`
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* git-bug: use Git instead of `git`
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* git-force-clone: use Git instead of `git`
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* gitwatch: use Git instead of `git`
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* hub-init: use Git instead of `git`
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
* pages.*: use Linux instead of GNU/Linux
---------
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2024-01-30 04:46:32 +00:00
|
|
|
- Download helm chart as a `tar` archive:
|
2018-10-17 21:41:08 +01:00
|
|
|
|
|
|
|
`helm get {{chart_release_name}}`
|
|
|
|
|
|
|
|
- Update helm dependencies:
|
|
|
|
|
|
|
|
`helm dependency update`
|