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 PostgreSQL cluster
        • Updating cluster settings
        • Creating a user
        • Updating a user
        • Deleting a user
        • Create database
        • Update database
        • Deleting a database
        • Performance diagnostics
        • Create a backup
        • Recovering a cluster
        • Deleting a cluster
    • Projects
    • Resource model
    • Scaling a cluster
  • Access management
  • Pricing policy
  • Diagnostics and troubleshooting
  1. Step-by-step guides
  2. Databases
  3. Managed Service for PostgreSQL
  4. Creating a user

Creating a PostgreSQL user

Written by
Yandex Cloud
Updated at July 24, 2026
View in Markdown

If you have a PostgreSQL cluster in your project, you can create a user in it, i.e., a PostgreSQL role with login permissions. Use a PostgresqlRole resource to define the user. The user password is stored in a Kubernetes Secret: the operator can generate it automatically or you can provide a custom Secret with credentials.

CLI
Management console
  1. Create the PostgresqlRole resource file, e.g., using the touch postgresqlrole.yaml command.

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

    The naming requirements are as follows:

    • The PostgreSQL role name (spec.username) must start with a Latin letter or underscore and can only contain Latin letters, numbers, and underscores.
    • The PostgresqlRole resource name (metadata.name) must follow this pattern: `<cluster_name>-<username_with_hyphens_instead_of_underscores>.
    Minimum configuration
    Configuration with an explicit password
    Full configuration
    apiVersion: postgresql.stackland.yandex.cloud/v1alpha1
    kind: PostgresqlRole
    metadata:
      name: test-cluster-test-user # Name of the PostgresqlRole resource in this format: <cluster-name>-<username-with-dashes-instead-of-underscores>
    spec:
      cluster: test-cluster # Name of PostgresqlCluster resource
      username: test_user # Name of role in PostgreSQL
    

    The manifest defines only the required fields, such as the cluster name and the PostgreSQL role name. The password will be automatically generated and stored in a Kubernetes Secret with the same name as the PostgresqlRole resource.

    apiVersion: v1
    kind: Secret
    metadata:
      name: test-cluster-user-secret
    type: Opaque
    stringData:
      username: test_user # username
      password: "<user_password>" # password
    ---
    apiVersion: postgresql.stackland.yandex.cloud/v1alpha1
    kind: PostgresqlRole
    metadata:
      name: test-cluster-test-user # Name of the PostgresqlRole resource in this format: <cluster-name>-<username-with-dashes-instead-of-underscores>
    spec:
      cluster: test-cluster # Name of PostgresqlCluster resource
      username: test_user # Name of role in PostgreSQL
      authentication:
        type: password
        secretName: test-cluster-user-secret # Name of the Secret with the credentials
    

    The manifest defines a Secret with credentials and a PostgresqlRole resource that references this Secret via spec.authentication.secretName. The Secret must contain the username key with the username and the password key with the user password.

    apiVersion: v1
    kind: Secret
    metadata:
      name: test-cluster-user-secret
    type: Opaque
    stringData:
      username: test_user # username
      password: "<user_password>" # password
    ---
    apiVersion: postgresql.stackland.yandex.cloud/v1alpha1
    kind: PostgresqlRole
    metadata:
      name: test-cluster-test-user # Name of the PostgresqlRole resource in this format: <cluster-name>-<username-with-dashes-instead-of-underscores>
    spec:
      cluster: test-cluster
      username: test_user
      authentication:
        type: password
        secretName: test-cluster-user-secret
      membership: # Parent roles to include the user in
        - test-parent-role
      options:
        superuser: false # Superuser privileges
        login: true # Allow login
        createdb: false # Permission to create databases
        createrole: false # Permission to create roles
        inherit: true # Permission inheritance from parent roles
        replication: false # Permission to use replication
        bypassRLS: false # Row-level security policy bypass
        connectionLimit: -1 # Limit on simultaneous connections: -1 for no limit
        validUntil: "2026-12-31T23:59:59Z" # Password expiration date in RFC3339 format
    

    spec.options defines role permissions, such as superuser, login, createdb, createrole, inherit, replication, bypassRLS, connectionLimit, or validUntil. spec.membership lists parent roles to include the user in.

  3. Apply the manifest: kubectl apply -f postgresqlrole.yaml -n <project_name>. Optionally, you can specify the project name in the metadata.namespace resource property and skip it in the command.

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

  2. In the left-hand menu, select PostgreSQL Clusters.

  3. Select the cluster.

  4. Go to the Users tab.

  5. Click Create.

  6. Fill out the fields as follows:

    • Name: Role name in PostgreSQL. The name must start with a Latin letter or _ and can only contain Latin letters, numbers, and _. It may be up to 63 characters long.
    • Password: User password. Its value is stored in a Kubernetes Secret and not available in plain text once saved.
    • Superuser: Toggle for superuser privileges. Disabled by default.
  7. Expand the Advanced parameters section and change the values as needed:

    • Allow login: Allows the role to connect to PostgreSQL. This parameter is enabled by default.
    • Parent roles: List of roles the user will be included in.
    • Creating databases: Permission to create new databases. Disabled by default.
    • Create roles: Permission to create, modify, and delete roles. Disabled by default.
    • Inherit role privileges: Permission inheritance from parent roles. This parameter is enabled by default.
    • Replication mode: Permission to use replication and WAL shipping operations. Disabled by default.
    • Bypass RLS: Permission to bypass row-level security policies. Disabled by default.
    • Connection limit: Maximum number of simultaneous connections. If set to -1, there is no limit. 0 disables new connections. The default value is -1.
    • Password valid until: Password expiration date in RFC3339 format.
  8. Click Create.

Done. The new user now appears in the cluster’s Users tab.

Was the article helpful?

Previous
Updating cluster settings
Next
Updating a user
© 2026 Direct Cursus Technology L.L.C.