- 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]>
58 lines
2.3 KiB
JSON
58 lines
2.3 KiB
JSON
{
|
|
"id": "annotate-resource-basics",
|
|
"title": "Annotating Kubernetes Resources",
|
|
"category": "Core Concepts",
|
|
"difficulty": "Easy",
|
|
"type": "task",
|
|
"weight": 3,
|
|
"description": "## Annotating Kubernetes Resources\n\nAnnotations attach arbitrary non-identifying metadata to Kubernetes objects — such as contact info, tool versions, or documentation URLs. Unlike labels, annotations **cannot** be used as selectors.\n\n**Your task:**\n\nA Deployment named `myapp` is running in the `default` namespace. Add the following annotations to it:\n- `[email protected]`\n- `reviewed=true`\n\n```bash\n# Verify:\nkubectl get deployment myapp -o jsonpath='{.metadata.annotations}'\n```",
|
|
"hints": [
|
|
{
|
|
"title": "kubectl annotate",
|
|
"body": "Use `kubectl annotate` to imperatively add or overwrite annotations on any resource.",
|
|
"command": "kubectl annotate deployment myapp [email protected] reviewed=true"
|
|
},
|
|
{
|
|
"title": "Overwrite an existing annotation",
|
|
"body": "If the annotation key already exists, pass `--overwrite` to update it.",
|
|
"command": "kubectl annotate deployment myapp [email protected] reviewed=true --overwrite"
|
|
}
|
|
],
|
|
"setup_commands": [
|
|
{
|
|
"command": "kubectl create deployment myapp --image=nginx:alpine --replicas=1 2>/dev/null || true"
|
|
},
|
|
{
|
|
"command": "kubectl rollout status deployment/myapp --timeout=60s"
|
|
}
|
|
],
|
|
"validation": {
|
|
"commands": [
|
|
{
|
|
"description": "Deployment 'myapp' exists",
|
|
"command": "kubectl get deployment myapp -o jsonpath='{.metadata.name}'",
|
|
"expected_output": "myapp",
|
|
"match": "exact"
|
|
},
|
|
{
|
|
"description": "Annotation 'contact' is [email protected]",
|
|
"command": "kubectl get deployment myapp -o jsonpath='{.metadata.annotations.contact}'",
|
|
"expected_output": "[email protected]",
|
|
"match": "exact"
|
|
},
|
|
{
|
|
"description": "Annotation 'reviewed' is true",
|
|
"command": "kubectl get deployment myapp -o jsonpath='{.metadata.annotations.reviewed}'",
|
|
"expected_output": "true",
|
|
"match": "exact"
|
|
}
|
|
]
|
|
},
|
|
"default_namespace": "default",
|
|
"teardown_commands": [
|
|
{
|
|
"command": "kubectl delete deployment myapp --ignore-not-found"
|
|
}
|
|
]
|
|
}
|