helm-install: add page (#6995)

beep
Simon Dahlbacka 2021-10-29 05:32:25 +03:00 committed by GitHub
parent f4c9616601
commit 331cfea5fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 3 deletions

View 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}}`

View File

@ -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: