v1

latestSwagger 2.02026-08-04232286653.5 KB
AutoClusters

Update the AutoClusters configuration for a specific cluster.

Allows setting or removing remediation overrides and configuring project reservation fallback.

patch/projects/{project_id}/kubernetes/clusters/{cluster_id}/autoclusters/config

Path parameters

project_idstring required

Project ID

cluster_idstring required

Cluster ID

Request body

fallback_to_project_reservationsboolean required

Whether to use project's unused reservations as fallback. If not set, existing value is preserved.

remove_remediation_overridesstring[]

Remediation overrides to remove (revert to system defaults).

Example request

{
  "fallback_to_project_reservations": true,
  "remove_remediation_overrides": [
    "XID_74",
    "GPU_FELL_OFF_THE_BUS"
  ],
  "set_remediation_overrides": [
    {
      "action": "OFF",
      "issue_name": "XID_74"
    }
  ]
}

Response

fallback_to_project_reservationsboolean

Whether to use project's unused reservations as fallback when Crusoe spares are exhausted.

updated_atstring date-time

When this config was last updated.

Example response

{
  "remediation_configs": [
    {
      "issue_name": "XID_74"
    }
  ],
  "updated_at": "2025-01-15T10:30:00Z"
}