cldkctl_edit_statefulset
Modify StatefulSets in Kubernetes clusters by specifying project ID, namespace, and StatefulSet name. Update configurations directly using the MCP server's cldkctl functionality.
Instructions
Call the cldkctl_edit_statefulset endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | StatefulSet name | |
namespace | Yes | Namespace | |
project_id | Yes | Project ID | |
statefulset_data | Yes | StatefulSet data |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "StatefulSet name",
"type": "string"
},
"namespace": {
"description": "Namespace",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
},
"statefulset_data": {
"description": "StatefulSet data",
"type": "object"
}
},
"required": [
"project_id",
"namespace",
"name",
"statefulset_data"
],
"type": "object"
}