refactor(scenarios): split monolithic configuration into individual files
- 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]>
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"id": "job-task",
|
||||
"title": "Create a One-Shot Job",
|
||||
"category": "Workloads & Scheduling",
|
||||
"difficulty": "Easy",
|
||||
"type": "task",
|
||||
"weight": 4,
|
||||
"description": "## Create a One-Shot Job\n\nA **Job** creates one or more pods and ensures a specified number of them successfully terminate. Unlike Deployments, Jobs are meant for finite tasks that run to completion.\n\n**Your task:**\n\nCreate a Job named `pi-job` that:\n- Uses `perl:5.34` image\n- Runs: `perl -Mbignum=bpi -wle 'print bpi(100)'` (computes π to 100 digits)\n- `completions: 1`\n- `restartPolicy: Never`",
|
||||
"hints": [
|
||||
{
|
||||
"title": "Job manifest",
|
||||
"body": "Set `restartPolicy: Never` or `OnFailure` in the pod template spec (not at pod spec level).",
|
||||
"command": "cat <<EOF | kubectl apply -f -\napiVersion: batch/v1\nkind: Job\nmetadata:\n name: pi-job\nspec:\n completions: 1\n template:\n spec:\n restartPolicy: Never\n containers:\n - name: pi\n image: perl:5.34\n command: [\"perl\",\"-Mbignum=bpi\",\"-wle\",\"print bpi(100)\"]\nEOF"
|
||||
}
|
||||
],
|
||||
"setup_commands": [],
|
||||
"validation": {
|
||||
"commands": [
|
||||
{
|
||||
"description": "Job 'pi-job' exists",
|
||||
"command": "kubectl get job pi-job -o jsonpath='{.metadata.name}'",
|
||||
"expected_output": "pi-job",
|
||||
"match": "exact"
|
||||
},
|
||||
{
|
||||
"description": "Job completions is 1",
|
||||
"command": "kubectl get job pi-job -o jsonpath='{.spec.completions}'",
|
||||
"expected_output": "1",
|
||||
"match": "exact"
|
||||
},
|
||||
{
|
||||
"description": "Job restartPolicy is Never",
|
||||
"command": "kubectl get job pi-job -o jsonpath='{.spec.template.spec.restartPolicy}'",
|
||||
"expected_output": "Never",
|
||||
"match": "exact"
|
||||
}
|
||||
]
|
||||
},
|
||||
"default_namespace": "default",
|
||||
"teardown_commands": [
|
||||
{
|
||||
"command": "kubectl delete job pi-job --ignore-not-found"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user