v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
GPU Bare Metal

Create bare metal GPU cluster

Create a new bare metal GPU cluster with the specified configuration.

post/cloud/v3/gpu/baremetal/{project_id}/{region_id}/clusters

Path parameters

project_idinteger required

Project ID

Example:1

Project ID

region_idinteger required

Region ID

Example:7

Region ID

Request body

flavorstring required

Cluster flavor ID

image_idstring required

System image ID

namestring required

Cluster name

servers_countinteger required

Number of servers in the cluster

tagsCreateTagsSerializer

A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.

Example request

{
  "flavor": "g3-ai-32-192-1500-l40s-48-1",
  "image_id": "3793c250-0b3b-4678-bab3-e11afbc29657",
  "name": "gpu-cluster-1",
  "servers_count": 3,
  "servers_settings": {
    "credentials": {
      "password": "securepassword",
      "ssh_key_name": "my-ssh-key",
      "username": "admin"
    },
    "file_shares": [
      {
        "id": "a3f2d1b8-45e6-4f8a-bb5d-19dbf2cd7e9a",
        "mount_path": "/mnt/vast"
      }
    ],
    "interfaces": [
      {
        "ip_family": "ipv4",
        "name": "eth0"
      }
    ],
    "security_groups": [
      {
        "id": "b4849ffa-89f2-45a1-951f-0ae5b7809d98"
      }
    ],
    "user_data": "eyJ0ZXN0IjogImRhdGEifQ=="
  }
}

Response

OK

tasksstring[] required

List of task IDs representing asynchronous operations. Use these IDs to monitor operation progress:

  • GET /v1/tasks/{task_id} - Check individual task status and details Poll task status until completion (FINISHED/ERROR) before proceeding with dependent operations.
idstring required

Example response

{
  "tasks": [
    "d478ae29-dedc-4869-82f0-96104425f565"
  ]
}