Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Cloud Stackland
  • What's new
  • Installation
    • All tutorials
    • Installing Stackland on Yandex BareMetal
    • Setting up external access to a pod in a cluster
    • All guides
      • Creating a user
      • Creating a user group
      • Connecting a SAML federation
      • Assigning access permissions
    • Projects
    • Resource model
  • Access management
  • Pricing policy
  • Diagnostics and troubleshooting

In this article:

  • Creating a group
  • Adding users to a group
  • System groups
  • What's next
  1. Step-by-step guides
  2. Users and groups
  3. Creating a user group

Creating a user group

Written by
Yandex Cloud
Updated at April 8, 2026
  • Creating a group
  • Adding users to a group
  • System groups
  • What's next

You can create a user group in Identity and Access Management to simplify access permission management.

Note

You need the organization administrator permissions to create such a group.

Creating a groupCreating a group

Management console
CLI
  1. In the management console, navigate to Access management.
  2. On the Groups page, click Create group.
  3. Specify the group's name.
  4. Optionally, add the group's description.
  5. Click Create.

You can only create a group using the management console. After the group is created, you can use the ClusterAccessBinding resource to assign it a role.

To assign a role to your group, create a file named group-role-binding.yaml:

apiVersion: iam.stackland.yandex.cloud/v1alpha1
kind: ClusterAccessBinding
metadata:
  name: <group_name>-role
spec:
  roleID: <role_ID>
  subject:
    kind: Group
    name: <group_name>

Where:

  • metadata.name: Unique role binding name.
  • roleID: Role ID, such as viewer, editor, or admin.
  • name: Name of the group you created in the management console.

Apply the manifest:

kubectl apply -f group-role-binding.yaml

Check the binding you created:

kubectl get clusteraccessbinding <group_name>-role

Adding users to a groupAdding users to a group

Management console
CLI
  1. In the management console, navigate to Access management.
  2. On the Groups page, select a group.
  3. Go to the Members tab.
  4. Click Add member.
  5. Select the users you want to add to the group.
  6. Click Add.

You can only manage group membership via the management console.

To check role assignments for groups, run this command:

kubectl get clusteraccessbindings -o wide

System groupsSystem groups

Groups prefixed with stackland- are system groups. You cannot delete or create such groups, but you can manage their membership.

System group examples:

  • stackland-cluster-admins: Cluster administrators with full permissions.
  • stackland-cluster-editors: Editors with permissions to edit resources.
  • stackland-cluster-viewers: Users with view-only permissions.

What's nextWhat's next

  • Assign access permissions for the group
  • Configure federation group mapping

Was the article helpful?

Previous
Creating a user
Next
Connecting a SAML federation
© 2026 Direct Cursus Technology L.L.C.