cldkctl_edit_deployment
Modify deployment configurations by specifying project ID, namespace, and deployment name. Update deployment data directly through the MCP cldkctl Server for streamlined management.
Instructions
Call the cldkctl_edit_deployment endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deployment_data | Yes | Deployment data | |
name | Yes | Deployment name | |
namespace | Yes | Namespace | |
project_id | Yes | Project ID |
Input Schema (JSON Schema)
{
"properties": {
"deployment_data": {
"description": "Deployment data",
"type": "object"
},
"name": {
"description": "Deployment name",
"type": "string"
},
"namespace": {
"description": "Namespace",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
}
},
"required": [
"project_id",
"namespace",
"name",
"deployment_data"
],
"type": "object"
}