add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

37
pages.zh/common/helm.md Normal file
View File

@@ -0,0 +1,37 @@
# helm
> Kubernetes 的一个包管理器。
> 一些子命令,如 `install`,有其自己的使用文档。
> 更多信息:<https://helm.sh/>.
- 创建一个 helm 图表:
`helm create {{chart_name}}`
- 添加一个新的 helm 仓库:
`helm repo add {{repository_name}}`
- 列出 helm 仓库:
`helm repo list`
- 更新 helm 仓库:
`helm repo update`
- 删除一个 helm 仓库:
`helm repo remove {{repository_name}}`
- 安装一个 helm 图表:
`helm install {{name}} {{repository_name}}/{{chart_name}}`
- 将 helm 图表下载为 tar 归档文件:
`helm get {{chart_release_name}}`
- 更新 helm 依赖:
`helm dependency update`