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 ClickHouse® cluster
        • Updating cluster settings
        • Create a backup
        • Recovering a cluster
        • Deleting a cluster
        • Create database
        • Update database
        • Deleting a database
        • Creating a role
        • Editing a role
        • Deleting a role
        • Creating a user
        • Updating a user
        • Deleting a user
    • Projects
    • Resource model
    • Scaling a cluster
  • Access management
  • Pricing policy
  • Diagnostics and troubleshooting

In this article:

  • Using the CLI
  • Using the management console
  1. Step-by-step guides
  2. Databases
  3. Managed Service for ClickHouse®
  4. Creating a user

Creating a user

Written by
Yandex Cloud
Updated at July 24, 2026
View in Markdown
  • Using the CLI
  • Using the management console

If you have a ClickHouse® cluster, you can create a user in it using a custom ClickhouseUser resource.

The user's password is stored in a Kubernetes Secret with the password key. The ClickhouseUser resource name and the Secret name must follow this pattern: <cluster_name>-<user_name>. If the spec.authentication.secretName field is not specified, the operator uses a Secret with the same name by default.

The ClickhouseUser and Secret resources must reside in the same namespace as the ClickhouseCluster cluster.

Using the CLIUsing the CLI

  1. Create a file for the ClickhouseUser and Secret resources, e.g., using the touch clickhouseuser.yaml command.

  2. Open the file and paste the configuration below into it:

    apiVersion: v1
    kind: Secret
    metadata:
      name: <cluster_name>-<username>
    type: Opaque
    stringData:
      password: "<password>"
    ---
    apiVersion: clickhouse.stackland.yandex.cloud/v1alpha1
    kind: ClickhouseUser
    metadata:
      name: <cluster_name>-<username>
    spec:
      cluster: <cluster_name>
      name: <username>
      roles:
        - name: <cluster_name>-reader
        - name: <cluster_name>-writer
      authentication:
        secretName: <cluster_name>-<username>
    

    Where:

    • spec.cluster: ClickhouseCluster cluster name.
    • spec.name: ClickHouse® user name.
    • spec.roles: List of roles assigned to the user. In each item, specify name, i.e., ClickhouseRole resource name in the same namespace.
    • spec.authentication.secretName: Name of the Secret with the password. This is an optional field. If not specified, the Secret named <cluster_name>-<user_name> is used.
    • In the stringData.password field of the Secret, set the user password.
  3. Apply the manifest: kubectl apply -f clickhouseuser.yaml -n <project_name>.

Using the management consoleUsing the management console

  1. If you have not opened a project yet, select one.

  2. In the left-hand menu, select ClickHouse® Clusters.

  3. Select a cluster.

  4. Go to the Users tab.

  5. Click Create.

  6. Fill out the fields as follows:

    • Name: ClickHouse® user name.
    • Password: User password. The management console automatically creates a Kubernetes Secret with the password.
    • Roles: List of roles assigned to the user. You can select multiple roles from those created in this cluster.
  7. Click Create.

Done. The user will now appear in the list on the Users tab.

Was the article helpful?

Previous
Deleting a role
Next
Updating a user
© 2026 Direct Cursus Technology L.L.C.