cldkctl_edit_crd
Edit Custom Resource Definitions (CRDs) for a specified project using the MCP cldkctl Server. Provide project ID, CRD name, and updated data to modify resources efficiently.
Instructions
Call the cldkctl_edit_crd endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
crd_data | Yes | CRD data | |
name | Yes | CRD name | |
project_id | Yes | Project ID |
Input Schema (JSON Schema)
{
"properties": {
"crd_data": {
"description": "CRD data",
"type": "object"
},
"name": {
"description": "CRD name",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
}
},
"required": [
"project_id",
"name",
"crd_data"
],
"type": "object"
}