{ "id": "resource-limits-task", "title": "Resource Requests and Limits", "category": "Configuration", "difficulty": "Easy", "type": "task", "weight": 5, "description": "## Resource Requests and Limits\n\nProper resource management prevents noisy-neighbour issues and enables the Kubernetes scheduler to make good placement decisions.\n\n**Your task:**\n\nCreate a Pod named `limited-pod` using the `nginx:alpine` image with the following resource configuration:\n\n| | CPU | Memory |\n|---|---|---|\n| **Request** | `100m` | `64Mi` |\n| **Limit** | `200m` | `128Mi` |\n\n```bash\n# Tip: write a manifest and apply it\nkubectl apply -f limited-pod.yaml\n```", "hints": [ { "title": "Pod manifest with resources", "body": "Add a `resources` block under `spec.containers[].resources` with `requests` and `limits` sub-keys.", "command": "cat <