{ "id": "resource-quota-ns", "title": "ResourceQuota for a Namespace", "category": "Cluster Administration", "difficulty": "Medium", "type": "task", "weight": 7, "description": "## ResourceQuota for a Namespace\n\nResourceQuotas enforce aggregate resource constraints per namespace, preventing any single team from consuming all cluster resources.\n\n**Your task:**\n\n1. Create a namespace named `team-quota`\n2. Create a **ResourceQuota** named `compute-quota` in `team-quota` that limits:\n - `pods`: `5`\n - `requests.cpu`: `\"1\"`\n - `requests.memory`: `\"500Mi\"`", "hints": [ { "title": "Create the ResourceQuota", "body": "Use `kubectl create resourcequota` with `--hard` flag or apply a YAML manifest.", "command": "cat <