get_namespace_resource_quota
Retrieve resource quotas and usage for a specified namespace in a Kubernetes cluster using the context name. Returns JSON data for monitoring and managing resource allocation.
Instructions
Get current resource quotas for a namespace.
Args: context_name: The Kubernetes context name namespace: The name of the namespace
Returns: JSON string containing the current resource quotas and their usage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context_name | Yes | ||
namespace | Yes |
Input Schema (JSON Schema)
{
"properties": {
"context_name": {
"title": "Context Name",
"type": "string"
},
"namespace": {
"title": "Namespace",
"type": "string"
}
},
"required": [
"context_name",
"namespace"
],
"title": "get_namespace_resource_quotaArguments",
"type": "object"
}