DEV Community

Arnob
Arnob

Posted on

Kubernetes RBAC User Permission Manage

Kubernetes RBAC stands for Role-Based Access Control. It is a security mechanism Kubernetes provides to control and manage access to resources within a cluster. RBAC allows cluster administrators to define fine-grained permissions and roles for individual users or groups, enabling them to access and perform specific actions on various resources.

captionless image

Here I will share how you manage permission based on the user. I will give full details of how you handle the user permission. you can ignore it if you already have users.

First, you have to create a policy. Go to “IAM dashboard”

IAM dashboard

Now you have to go to the Policies Page

Policies

Now create policies

Add Permission

{
    "Version": "2012-10-17",
    "Statement": [        {
            "Effect": "Allow",
            "Action": […
Enter fullscreen mode Exit fullscreen mode

Top comments (0)