Merge pull request #33066 from kinzhi/kinzhi12

[zh]update file content/zh/docs/reference/access-authn-authz/rbac.md
This commit is contained in:
Kubernetes Prow Robot
2022-04-20 17:52:59 -07:00
committed by GitHub
@@ -574,23 +574,23 @@ rules:
<!--
Allow reading/writing Deployments (at the HTTP level: objects with `"deployments"`
in the resource part of their URL) in both the `"extensions"` and `"apps"` API groups:
in the resource part of their URL) in the `"apps"` API groups:
-->
允许读/写在 "extensions" 和 "apps" API 组中的 Deployment(在 HTTP 层面,对应
允许读/写在 `"apps"` API 组中的 Deployment(在 HTTP 层面,对应
URL 中资源部分为 "deployments"):
```yaml
rules:
- apiGroups: ["extensions", "apps"]
- apiGroups: ["apps"]
resources: ["deployments"]
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
```
<!--
Allow reading Pods in the core API group, as well as reading or writing Job
resources in the `"batch"` or `"extensions"` API groups:
resources in the `"batch"` API group:
-->
允许读取核心 API 组中的 "pods" 和读/写 `"batch"``"extensions"` API 组中的
允许读取核心 API 组中的 "pods" 和读/写 `"batch"` API 组中的
"jobs"
```yaml
@@ -598,7 +598,7 @@ rules:
- apiGroups: [""]
resources: ["pods"]
verbs: ["get", "list", "watch"]
- apiGroups: ["batch", "extensions"]
- apiGroups: ["batch"]
resources: ["jobs"]
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
```