From c85b6b5736e6ac89771d42153a21c0f8ba9108bd Mon Sep 17 00:00:00 2001 From: Yoshiya Maki Date: Sat, 14 Dec 2024 01:41:42 +0900 Subject: [PATCH] Update docs/reference/glossary/rbac.md --- content/en/docs/reference/glossary/rbac.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/content/en/docs/reference/glossary/rbac.md b/content/en/docs/reference/glossary/rbac.md index ff3dc7e747..bdbf630824 100644 --- a/content/en/docs/reference/glossary/rbac.md +++ b/content/en/docs/reference/glossary/rbac.md @@ -15,5 +15,10 @@ tags: -RBAC utilizes *roles*, which contain permission rules, and *role bindings*, which grant the permissions defined in a role to a set of users. +RBAC utilizes four kinds of Kubernetes objects: +* **Role**: Defines permission rules in a specific namespace. +* **ClusterRole**: Defines permission rules cluster-wide. +* **RoleBinding**: Grants the permissions defined in a role to a set of users in a specific namespace. +* **ClusterRoleBinding**: Grants the permissions defined in a role to a set of users cluster-wide. +For more information, see [RBAC](/docs/reference/access-authn-authz/rbac/).