cluster-capacity-calculator
ActiveTool of Utility Matrix
Use this when a user asks whether their Kubernetes cluster has enough capacity, or how many more pods they can schedule. Takes node count (`nodes`), CPU cores per node (`node_cpu`), memory per node in GB (`node_memory_gb`), pod count (`pods`), and resource requests. Returns cluster utilization and headroom.
Parameters schema
{
"type": "object",
"required": [
"nodes",
"node_cpu",
"node_memory_gb"
],
"properties": {
"pods": {
"type": "number"
},
"nodes": {
"type": "number"
},
"node_cpu": {
"type": "number"
},
"pod_cpu_m": {
"type": "number"
},
"pod_memory_mb": {
"type": "number"
},
"node_memory_gb": {
"type": "number"
}
}
}Parent server
Utility Matrix
1/7 registries