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

View File

@@ -0,0 +1,16 @@
# kubectl 替换
> 通过文件或 `stdin` 替换资源。
> 更多信息: <https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#replace>。
- 使用资源定义文件替换资源:
`kubectl replace -f {{path/to/file.yml}}`
- 使用传递到 `stdin` 的输入替换资源:
`kubectl replace -f -`
- 强制替换,先删除再重新创建资源:
`kubectl replace --force -f {{path/to/file.yml}}`