Repositories
Authorization Resources
Published by: Kubernetes0Updated

Kubernetes Authorization Resources are components that control access to the Kubernetes API and cluster resources, primarily using Role-Based Access Control (RBAC). These resources include Roles, ClusterRoles, RoleBindings, and ClusterRoleBindings, which work together to define and enforce fine-grained access policies for users, groups, and service accounts within a Kubernetes cluster.

Enter
  • ClusterRole

    Released

    The ClusterRole template is designed to provide flexibility in creating Kubernetes ClusterRole resources. It uses a combination of facets and variables to allow for different configurations.

  • The ClusterRoleBinding template is designed to grant cluster-wide permissions defined in a ClusterRole to a set of users, groups, or service accounts. It uses a combination of facets and variables to allow for different configurations.

  • Role

    Released

    The Role template is designed to define permissions within a specific namespace in a Kubernetes cluster. It uses a combination of facets and variables to allow for different configurations.

  • RoleBinding

    Released

    The RoleBinding template is designed to bind a Role to a set of users, groups, or service accounts within a specific namespace in a Kubernetes cluster. It uses a combination of facets and variables to allow for different configurations.