mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 11:26:00 +02:00
helm-install: add page (#6995)
This commit is contained in:
parent
f4c9616601
commit
331cfea5fa
2 changed files with 36 additions and 3 deletions
32
pages/common/helm-install.md
Normal file
32
pages/common/helm-install.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# helm install
|
||||
|
||||
> Install a helm chart.
|
||||
> More information: <https://helm.sh/docs/intro/using_helm/#helm-install-installing-a-package>.
|
||||
|
||||
- Install a helm chart:
|
||||
|
||||
`helm install {{name}} {{repository_name}}/{{chart_name}}`
|
||||
|
||||
- Install a helm chart from an unpacked chart directory:
|
||||
|
||||
`helm install {{name}} {{path/to/source_directory}}`
|
||||
|
||||
- Install a helm chart from a URL:
|
||||
|
||||
`helm install {{package_name}} {{https://example.com/charts/packagename-1.2.3.tgz}}`
|
||||
|
||||
- Install a helm chart and generate a name:
|
||||
|
||||
`helm install {{repository_name}}/{{chart_name}} --generate-name`
|
||||
|
||||
- Perform a dry run:
|
||||
|
||||
`helm install {{name}} {{repository_name}}/{{chart_name}} --dry-run`
|
||||
|
||||
- Install a helm chart with custom values:
|
||||
|
||||
`helm install {{name}} {{repository_name}}/{{chart_name}} --set {{parameter1}}={{value1}},{{parameter2}}={{value2}}`
|
||||
|
||||
- Install a helm chart passing a custom values file:
|
||||
|
||||
`helm install {{name}} {{repository_name}}/{{chart_name}} --values {{path/to/values.yaml}}`
|
|
@ -1,6 +1,7 @@
|
|||
# helm
|
||||
|
||||
> Helm is a package manager for Kubernetes.
|
||||
> Some subcommands such as `helm install` have their own usage documentation.
|
||||
> More information: <https://helm.sh/>.
|
||||
|
||||
- Create a helm chart:
|
||||
|
@ -9,7 +10,7 @@
|
|||
|
||||
- Add a new helm repository:
|
||||
|
||||
`helm repo add {{repo_name}}`
|
||||
`helm repo add {{repository_name}}`
|
||||
|
||||
- List helm repositories:
|
||||
|
||||
|
@ -21,11 +22,11 @@
|
|||
|
||||
- Delete a helm repository:
|
||||
|
||||
`helm repo remove {{repo_name}}`
|
||||
`helm repo remove {{repository_name}}`
|
||||
|
||||
- Install a helm chart:
|
||||
|
||||
`helm install {{repo_name}}/{{chart_name}}`
|
||||
`helm install {{name}} {{repository_name}}/{{chart_name}}`
|
||||
|
||||
- Download helm chart as a tar archive:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue