Clusters
Deploy cluster
Deploy a new cluster.
Before deploying add at least one SSH key to enable access to your cluster.
Cluster types can be listed using the GET /v1/cluster-types endpoint. Image types can be listed using the GET /v1/images/cluster endpoint.
post/v1/clusters
Headers
user-agentstring required
cf-connecting-ipstring required
Request body
Example request
{
"cluster_type": "16H200",
"image": "ubuntu-22.04-cuda-12.4-cluster",
"startup_script_id": "64e2600b-0d1b-4ec3-8bf0-7ad1362c4289",
"hostname": "dark-vm-shrinks-fin-01",
"description": "ubuntu-22-04-cuda-12-4-16b200-fin-01",
"tags": [
{
"key": "environment",
"value": "production"
},
{
"key": "benchmark"
}
],
"location_code": "FIN-01",
"contract": "PAY_AS_YOU_GO",
"shared_volume": {
"name": "SFS-pmAna3o2",
"size": 30000
},
"existing_volumes": []
}Response
Cluster deployed
Example response
{
"id": "1557a485-1d3d-407d-a4c8-68368b5f3d01"
}