Exploring the RBAC Authorization
Explore different components of the RBAC authorization.
We'll cover the following...
The RBAC Components
Managing Kubernetes RBAC requires knowledge of a few elements. Specifically, we should learn about Rules, Roles, Subjects, and RoleBindings.
Rules
A Rule is a set of operations (verbs), resources, and API groups. Verbs describe activities that can be performed on resources that belong to different API Groups.
Currently supported verbs are as follows:
Verb | Description |
---|---|
get |
Retrieves information about a specific object |
list |
Retrieves information about a collection of objects |
create |
Creates a specific object |