pv_get
Retrieve detailed information about a specific PersistentVolume in Kubernetes. Specify the context name and PersistentVolume name to access its configuration and status efficiently.
Instructions
Get details of a specific PersistentVolume.
Args: context_name: The Kubernetes context name name: The PersistentVolume name
Returns: Detailed information about the PersistentVolume
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_getArguments",
"type": "object"
}