Manage Clusters
This guide provides an overview of how to manage Slurm clusters in your project.
List Clusters
- API
- CLI
To list all Slurm clusters via the API, send a GET
request to the /slurm/clusters
endpoint:
GET /slurm/clusters HTTP/1.1
Host: <region>.atlas.fluidstack.io
Authorization: Bearer <token>
Use the fluidctl slurm clusters list
command to list all Slurm clusters in a region:
fluidctl slurm clusters list --region <region> --project <project-id>
Get Cluster Details
- API
To get details for a specific cluster via the API, send a GET
request to the /slurm/clusters/{id}
endpoint:
GET /slurm/clusters/<cluster-id> HTTP/1.1
Host: <region>.atlas.fluidstack.io
Authorization: Bearer <token>
For node pool management, see Manage Node Pools.