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

25
pages.zh/common/az-aks.md Normal file
View File

@@ -0,0 +1,25 @@
# az aks
> 管理 Azure Kubernetes 服务 (AKS) 集群。
> 是 `azure-cli` 的一部分(也称为 `az`)。
> 更多信息:<https://learn.microsoft.com/cli/azure/aks>。
- 列出 AKS 集群:
`az aks list --resource-group {{resource_group}}`
- 创建一个新的 AKS 集群:
`az aks create --resource-group {{resource_group}} --name {{name}} --node-count {{count}} --node-vm-size {{size}}`
- 删除一个 AKS 集群:
`az aks delete --resource-group {{resource_group}} --name {{name}}`
- 获取 AKS 集群的访问凭据:
`az aks get-credentials --resource-group {{resource_group}} --name {{name}}`
- 获取 AKS 集群可用的升级版本:
`az aks get-upgrades --resource-group {{resource_group}} --name {{name}}`