Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
    • Cloud Interconnect
    • Cloud Backup
    • Cloud Registry
    • Yandex AI Studio
    • Compute Cloud
    • Object Storage
    • Managed Service for Kubernetes®
    • Yandex BareMetal
    • Smart Web Security
    • Security Deck
    • Managed Service for PostgreSQL
    • Managed Service for ClickHouse®
    • Monium
    • Cloud CDN
    • Network Load Balancer
    • Virtual Private Cloud
    • Cloud DNS
    • Application Load Balancer
    • Yandex Cloud Video
    • Stackland
    • Yandex Cloud Router
    • Yandex Managed Service for Trino
    • Managed Service for MySQL®
    • Managed Service for Valkey™
    • Managed Service for Apache Spark™
    • Yandex StoreDoc
    • Managed Service for OpenSearch
    • Managed Service for Apache Kafka®
    • Data Transfer
    • Yandex MPP Analytics Engine for PostgreSQL
    • Yandex Managed Service for Apache Airflow®
    • Data Processing
    • Yandex MetaData Hub
    • Managed Service for YDB
    • Managed Service for Sharded PostgreSQL
    • Managed Service for YTsaurus
    • Yandex WebSQL
    • DataLens
    • Yandex Search API
    • SpeechSense
    • SpeechKit
    • DataSphere
    • Vision OCR
    • Translate
    • Yandex Identity Hub
    • Key Management Service
    • Certificate Manager
    • Yandex Lockbox
    • Audit Trails
    • SmartCaptcha
    • Cloud Desktop
    • SourceCraft Code Assistant
    • Container Registry
    • Managed Service for GitLab
    • Managed Service for Prometheus®
    • Cloud Functions
    • API Gateway
    • Yandex Cloud Postbox
    • Message Queue
    • Serverless Integrations
    • IoT Core
    • Data Streams
    • Serverless Containers
    • Cloud Notification Service
    • Yandex Query
    • Identity and Access Management
    • Yandex Cloud Console
    • Resource Manager
    • Yandex Cloud Billing
    • Yandex Cloud Quota Manager
    • Cloud Apps
  • 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
    • Installing Stackland on Yandex BareMetal via PXE
    • Installing Stackland on Yandex Cloud VMs
    • 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
    • Scaling a cluster
  • 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
View in Markdown
  • 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.