Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 599 Bytes

26. Day 26 -- Role Based Access Control (RBAC).md

File metadata and controls

16 lines (12 loc) · 599 Bytes

Day 26 -- Role Based Access Control (RBAC)

✨ Service Accounts

  • Processes in Containers and other third party applications could also contact the api-server. They are authenticated as a particular Service Account.

✨ Role

  • Sets Permission within a Namespace

✨ Cluster Role

  • Sets Permission across the cluster

✨ RoleBinding & ClusterRoleBinding

  • rolebindings grant the permissions defined in Role/ClusterRole to a user or a set of users.

Documentation is informative & clear. Link to the documentation: https://kubernetes.io/docs/reference/access-authn-authz/rbac/