From f49d0f79654c9463cf8e99f6ab53af2cd4466731 Mon Sep 17 00:00:00 2001 From: Vidhi Gupta Date: Thu, 18 Oct 2018 02:11:08 +0530 Subject: [PATCH] helm: add page (#2349) --- pages/common/helm.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 pages/common/helm.md diff --git a/pages/common/helm.md b/pages/common/helm.md new file mode 100644 index 000000000..65b460405 --- /dev/null +++ b/pages/common/helm.md @@ -0,0 +1,35 @@ +# helm + +> Helm is a package manager for Kubernetes. + +- Create a helm chart: + +`helm create {{chart_name}}` + +- Add a new helm repository: + +`helm repo add {{repo_name}}` + +- List helm repositories: + +`helm repo list` + +- Update helm repositories: + +`helm repo update` + +- Delete a helm repository: + +`helm repo remove {{repo_name}}` + +- Install a helm chart: + +`helm install {{repo_name}}/{{chart_name}}` + +- Download helm chart as a tar archive: + +`helm get {{chart_release_name}}` + +- Update helm dependencies: + +`helm dependency update`