clusterrole_get
Retrieve detailed information about a specific ClusterRole in Kubernetes by providing the context name and ClusterRole name. Facilitates efficient management of ClusterRoles across multiple clusters using the k8s-pilot MCP server.
Instructions
Get details of a specific ClusterRole.
Args: context_name: The Kubernetes context name name: The ClusterRole name
Returns: Detailed information about the ClusterRole
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": "clusterrole_getArguments",
"type": "object"
}