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.
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”
Now you have to go to the Policies Page
Now create policies
{
"Version": "2012-10-17",
"Statement": [ {
"Effect": "Allow",
"Action": […




Top comments (0)