From 6f9eaa02082a1204d8a22b602caf12413bf9fc66 Mon Sep 17 00:00:00 2001 From: Yoshiya Maki Date: Tue, 7 Jan 2025 18:36:32 +0900 Subject: [PATCH] [ja] Sync reference/glossary/rbac.md --- content/ja/docs/reference/glossary/rbac.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/content/ja/docs/reference/glossary/rbac.md b/content/ja/docs/reference/glossary/rbac.md index 06a73461efc81..73497f67d97b9 100644 --- a/content/ja/docs/reference/glossary/rbac.md +++ b/content/ja/docs/reference/glossary/rbac.md @@ -15,4 +15,18 @@ tags: -RBACは、権限を含む*Role*と、Roleで定義された権限を一連のユーザーに付与する*RoleBinding*を使用します。 +RBACは、以下の4種類のKubernetesオブジェクトを使用します: + +Role +: 特定のNamespaceの権限を定義します。 + +ClusterRole +: クラスター全体の権限を定義します。 + +RoleBinding +: 特定のNamespaceにおいて、Roleで定義された権限を一連のユーザーに付与します。 + +ClusterRoleBinding +: クラスター全体において、Roleで定義された権限を一連のユーザーに付与します。 + +詳細については、[RBAC](/ja/docs/reference/access-authn-authz/rbac/)を参照して下さい。