pv_delete
Remove PersistentVolumes in Kubernetes clusters managed by the k8s-pilot MCP server. Provide context name and PV name to execute deletion and retrieve operation status.
Instructions
Delete a PersistentVolume from the cluster.
Args: context_name: The Kubernetes context name name: The PersistentVolume name
Returns: Status of the deletion operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context_name | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"context_name": {
"title": "Context Name",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"context_name",
"name"
],
"title": "pv_deleteArguments",
"type": "object"
}