- Split `scenarios/scenarios.json` into individual JSON files under `scenarios/data/` named `<scenario-id>.json` - Split `scenarios/bundles.json` into individual JSON files under `scenarios/bundles/` named `<bundle-id>.json` - Updated `backend/server.js` to dynamically load scenario and bundle files from their respective directories - Updated documentation in `scenarios/SCHEMA.md` and `README.md` to reflect the new repository layout and contributor workflow Signed-off-by: Abhinav Sinha <[email protected]>
46 lines
1.9 KiB
JSON
46 lines
1.9 KiB
JSON
{
|
|
"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 <<EOF | kubectl apply -f -\napiVersion: v1\nkind: ResourceQuota\nmetadata:\n name: compute-quota\n namespace: team-quota\nspec:\n hard:\n pods: \"5\"\n requests.cpu: \"1\"\n requests.memory: \"500Mi\"\nEOF"
|
|
}
|
|
],
|
|
"setup_commands": [],
|
|
"validation": {
|
|
"commands": [
|
|
{
|
|
"description": "ResourceQuota 'compute-quota' exists in team-quota",
|
|
"command": "kubectl get resourcequota compute-quota -n team-quota -o jsonpath='{.metadata.name}'",
|
|
"expected_output": "compute-quota",
|
|
"match": "exact"
|
|
},
|
|
{
|
|
"description": "Pod limit is 5",
|
|
"command": "kubectl get resourcequota compute-quota -n team-quota -o jsonpath='{.spec.hard.pods}'",
|
|
"expected_output": "5",
|
|
"match": "exact"
|
|
},
|
|
{
|
|
"description": "CPU request limit is 1",
|
|
"command": "kubectl get resourcequota compute-quota -n team-quota -o jsonpath='{.spec.hard.requests\\.cpu}'",
|
|
"expected_output": "1",
|
|
"match": "exact"
|
|
}
|
|
]
|
|
},
|
|
"default_namespace": "default",
|
|
"teardown_commands": [
|
|
{
|
|
"command": "kubectl delete namespace team-quota --ignore-not-found --wait=false"
|
|
}
|
|
]
|
|
}
|