analyze_kubernetes_cluster_costs
Calculate estimated monthly costs for a Kubernetes cluster by analyzing per-node expenses and total expenditure based on cluster identifier.
Instructions
Analyze the estimated costs of a Kubernetes cluster. Smart identifier resolution: use cluster label or UUID.
Args: cluster_identifier: The cluster label or ID
Returns: Cost analysis including per-node costs and total estimated monthly cost
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"
}