Manage Clusters
This guide provides an overview of how to manage Kubernetes clusters in your project.
List Clusters
- API
- CLI
To list all Kubernetes clusters via the API, send a GET
request to the /kubernetes/clusters
endpoint:
GET /kubernetes/clusters HTTP/1.1
Host: <region>.atlas.fluidstack.io
Authorization: Bearer <token>
Use the fluidctl kubernetes clusters list
command to list all Kubernetes clusters in a region:
fluidctl kubernetes 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 /kubernetes/clusters/{id}
endpoint:
GET /kubernetes/clusters/<cluster-id> HTTP/1.1
Host: <region>.atlas.fluidstack.io
Authorization: Bearer <token>
For node pool management, see Manage Node Pools.