cldkctl_delete_statefulset
Delete a StatefulSet in a specified namespace by providing the project ID, namespace, and StatefulSet name using the MCP cldkctl Server.
Instructions
Call the cldkctl_delete_statefulset endpoint
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | StatefulSet name | |
| namespace | Yes | Namespace | |
| project_id | Yes | Project ID |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "StatefulSet name",
"type": "string"
},
"namespace": {
"description": "Namespace",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
}
},
"required": [
"project_id",
"namespace",
"name"
],
"type": "object"
}