cldkctl_k8s_pod_delete
Delete Kubernetes pods by specifying project ID, namespace, and pod name using the MCP cldkctl Server endpoint for streamlined cluster management.
Instructions
Call the cldkctl_k8s_pod_delete endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Pod name | |
namespace | Yes | Namespace | |
project_id | Yes | Project ID |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Pod name",
"type": "string"
},
"namespace": {
"description": "Namespace",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
}
},
"required": [
"project_id",
"namespace",
"name"
],
"type": "object"
}