ClusterRoleBinding Properties
Class Properties 2 members
Represents a ClusterRoleBinding in a Kubernetes cluster.
Gets or sets the RoleRef property, which contains information pointing to the Kubernetes role being referenced within the ClusterRoleBinding configuration. The RoleRef property defines the role name, kind, and the group for API access, to ensure the binding is correctly associated with the intended permissions and scope.
public RoleRefV1 RoleRef { get; set; } Gets the list of subjects associated with the ClusterRoleBinding. Subjects refer to the entities (users, groups, or service accounts) that the role binding applies to.
public List<SubjectV1> Subjects { get; }Remarks
Each subject in the list can represent a specific user, group, or Kubernetes resource that is granted the permissions defined in the associated role. This property is initialized as an empty list and can contain zero or more subjects.