**RBAC(Role-Based Access Control)**は、API 上で誰が何をできるかを統制します。権限は、許可された動詞(verb)をリソース上に列挙する Role に subject(ユーザー、グループ、ServiceAccount)を binding することで付与されます。RBAC は、より広い cluster ハードニング戦略の 1 つの層です。
RBAC モデル
SUBJECT (user / group / ServiceAccount)
│ bound by
▼
RoleBinding ───────► Role (namespaced: permissions within ONE namespace)
ClusterRoleBinding ► ClusterRole (cluster-wide, or reusable across namespaces)
Role/ClusterRole = a set of RULES: "these VERBS on these RESOURCES"
Bindings are ADDITIVE and there is NO deny — you grant only what's needed.
