get_kubernetes_cluster
Retrieve detailed configuration and status information for a specific Kubernetes cluster using either its human-readable label or UUID identifier.
Instructions
Get detailed information about a specific Kubernetes cluster. Smart identifier resolution: use cluster label or UUID.
Args: cluster_identifier: The cluster label or ID (e.g., "production-cluster" or UUID)
Returns: Detailed cluster information including configuration and status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cluster_identifier | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cluster_identifier": {
"title": "Cluster Identifier",
"type": "string"
}
},
"required": [
"cluster_identifier"
],
"type": "object"
}