delete_kubernetes_cluster
Remove a Kubernetes cluster from the Civo cloud platform by specifying the cluster ID and region identifier to decommission resources and stop billing.
Instructions
Delete a Kubernetes cluster on Civo
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Cluster ID | |
region | Yes | Region identifier |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Cluster ID",
"type": "string"
},
"region": {
"description": "Region identifier",
"type": "string"
}
},
"required": [
"id",
"region"
],
"type": "object"
}