Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

42
helm Normal file
View File

@@ -0,0 +1,42 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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`