cldkctl_delete_crd
Delete Custom Resource Definitions (CRDs) by specifying project ID and CRD name using the MCP cldkctl Server, streamlining CRD management in Kubernetes environments.
Instructions
Call the cldkctl_delete_crd endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | CRD name | |
project_id | Yes | Project ID |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "CRD name",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
}
},
"required": [
"project_id",
"name"
],
"type": "object"
}