瀏覽代碼

helm: add page (#2349)

Vidhi Gupta 6 年之前
父節點
當前提交
f49d0f7965
共有 1 個文件被更改,包括 35 次插入0 次删除
  1. 35 0
      pages/common/helm.md

+ 35 - 0
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`