Yandex Cloud
Search
Contact UsGet started
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI for business
    • Business tools
  • 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
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Compute Cloud
    • All guides
      • Creating a reserved instance pool
      • Updating a reserved instance pool
      • Deleting a reserved instance pool
      • Managing instances in a pool
    • Viewing service resource operations
    • Viewing metrics in Monitoring
    • NVIDIA driver update guide
  • Yandex Container Solution
  • Access management
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Release notes
  1. Step-by-step guides
  2. Reserved instance pools
  3. Creating a reserved instance pool

Creating a reserved instance pool

Written by
Yandex Cloud
Improved by
Danila N.
Updated at September 8, 2025

Warning

Reserved instance pools are billable: you pay for the whole unused volume of reserved computing resources of VMs, GPU clusters, and software accelerated networks according to the Yandex Compute Cloud pricing policy. For more information, see Using reserved instance pools.

The reserved instance pool feature is at the Preview stage.

To create a reserved instance pool:

CLI
API

If you do not have the Yandex Cloud CLI installed yet, install and initialize it.

By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also set a different folder for any specific command using the --folder-name or --folder-id parameter.

  1. See the description of the Yandex Cloud CLI command for creating a reserved instance pool:

    yc compute reserved-instance-pool create --help
    
  2. Create a reserved instance pool in the default folder:

    yc compute reserved-instance-pool create \
      --name <pool_name> \
      --description <pool_description> \
      --zone-id <availability_zone_ID> \
      --size <pool_size> \
      --platform <platform_ID> \
      --cores <number_of_vCPUs> \
      --memory <RAM_size> \
      --gpus <number_of_GPUs> \
      --gpu-cluster-id <GPU_cluster_ID> \
      --allow-oversubscription
    

    Where:

    • --name: Name of the new pool. Follow these naming requirements:

      • It must be from 2 to 63 characters long.
      • It can only contain lowercase Latin letters, numbers, and hyphens.
      • It must start with a letter and cannot end with a hyphen.
    • --description: Description of the new pool. This is an optional parameter.

    • --zone-id: ID of the availability zone to reserve computing resources in.

    • --size: Number of slots per pool. This is an optional parameter. The default value is 0.

    • --platform: Platform where the computing resources are reserved. This is an optional parameter. The default value is standard-v2 (Intel Cascade Lake).

    • --cores: Number of vCPUs for VMs in the new pool. This is an optional parameter. The default value is 2.

    • --memory: Amount of RAM for VMs in the new pool. This is an optional parameter. The default value is 2 GB.

    • --gpus: Number of GPUs for VMs in the new pool. This is an optional parameter. This parameter is only available if you select a platform with GPU support.

    • --gpu-cluster-id: GPU cluster ID. This is an optional parameter.

    • --allow-oversubscription: Parameter enabling the oversubscription mode for the pool. In this mode, you can attach VMs beyond the pool capacity. This is an optional parameter. The oversubscription mode is off by default.

    Result:

    done (8s)
    id: fv4vnl1ncbja********
    zone_id: ru-central1-a
    cloud_id: b1gia87mbaom********
    folder_id: b1gt6g8ht345********
    name: test-pool
    description: sample description
    created_at: "2025-08-12T07:58:57Z"
    platform_id: standard-v2
    resources_spec:
      memory: "2147483648"
      cores: "2"
      core_fraction: "100"
    gpu_settings: {}
    network_settings:
      type: STANDARD
    size: "2"
    committed_size: "2"
    slot_stats:
      total: "2"
      unavailable: "2"
    instance_stats: {}
    

    For more information about the yc compute reserved-instance-pool create command, see the Yandex Cloud CLI reference.

Use the create REST API method for the ReservedInstancePool resource or the ReservedInstancePoolService/Create gRPC API call.

See alsoSee also

  • Managing VMs in a reserved instance pool
  • Reserved instance pools

Was the article helpful?

Previous
Configuring access permissions for a dedicated host group
Next
Updating a reserved instance pool
© 2025 Direct Cursus Technology L.L.C.