Files
rootnode-academy/scenarios/data/serviceaccount-pod.json
T
Abhinav Sinha 124e5276d4 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]>
2026-06-15 07:52:47 +05:30

54 lines
2.2 KiB
JSON

{
"id": "serviceaccount-pod",
"title": "ServiceAccount for Pod API Access",
"category": "Cluster Administration",
"difficulty": "Medium",
"type": "task",
"weight": 7,
"description": "## ServiceAccount for Pod API Access\n\nServiceAccounts provide an identity for pods that need to interact with the Kubernetes API (e.g., operators, CI runners, custom controllers).\n\n**Your task:**\n\n1. Create a ServiceAccount named `api-reader` in the `default` namespace\n2. Create a Pod named `api-pod` using `nginx:alpine` that uses the `api-reader` ServiceAccount\n\n```bash\n# Verify:\nkubectl get pod api-pod -o jsonpath='{.spec.serviceAccountName}'\n```",
"hints": [
{
"title": "Create a ServiceAccount",
"body": "ServiceAccounts are namespace-scoped resources. Use `kubectl create serviceaccount`.",
"command": "kubectl create serviceaccount api-reader"
},
{
"title": "Assign ServiceAccount to a Pod",
"body": "Set `spec.serviceAccountName` in the pod spec.",
"command": "cat <<EOF | kubectl apply -f -\napiVersion: v1\nkind: Pod\nmetadata:\n name: api-pod\nspec:\n serviceAccountName: api-reader\n containers:\n - name: app\n image: nginx:alpine\nEOF"
}
],
"setup_commands": [],
"validation": {
"commands": [
{
"description": "ServiceAccount 'api-reader' exists",
"command": "kubectl get serviceaccount api-reader -o jsonpath='{.metadata.name}'",
"expected_output": "api-reader",
"match": "exact"
},
{
"description": "Pod 'api-pod' uses api-reader ServiceAccount",
"command": "kubectl get pod api-pod -o jsonpath='{.spec.serviceAccountName}'",
"expected_output": "api-reader",
"match": "exact"
},
{
"description": "Pod 'api-pod' is Running",
"command": "kubectl get pod api-pod -o jsonpath='{.status.phase}'",
"expected_output": "Running",
"match": "exact"
}
]
},
"default_namespace": "default",
"teardown_commands": [
{
"command": "kubectl delete serviceaccount api-reader --ignore-not-found"
},
{
"command": "kubectl delete pod api-pod --ignore-not-found --grace-period=0 --force"
}
]
}