- 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]>
52 lines
2.4 KiB
JSON
52 lines
2.4 KiB
JSON
{
|
|
"id": "networkpolicy-egress",
|
|
"title": "Egress NetworkPolicy",
|
|
"category": "Security",
|
|
"difficulty": "Hard",
|
|
"type": "task",
|
|
"weight": 8,
|
|
"description": "## Egress NetworkPolicy\n\nEgress NetworkPolicies control **outbound** traffic from pods. By default, all egress is allowed; once you apply an egress policy to a pod, only explicitly allowed egress is permitted.\n\n**Your task:**\n\nCreate a NetworkPolicy named `restrict-egress` in the `default` namespace that:\n- Applies to pods with label `role=isolated`\n- Allows **egress only to pods with label `role=allowed`** on port `80`\n- Blocks all other egress",
|
|
"hints": [
|
|
{
|
|
"title": "Egress NetworkPolicy structure",
|
|
"body": "Set `spec.policyTypes: [Egress]` and define `spec.egress[]` with `to` and `ports`. Omitting a type means it's not affected.",
|
|
"command": "cat <<EOF | kubectl apply -f -\napiVersion: networking.k8s.io/v1\nkind: NetworkPolicy\nmetadata:\n name: restrict-egress\n namespace: default\nspec:\n podSelector:\n matchLabels:\n role: isolated\n policyTypes:\n - Egress\n egress:\n - to:\n - podSelector:\n matchLabels:\n role: allowed\n ports:\n - protocol: TCP\n port: 80\nEOF"
|
|
}
|
|
],
|
|
"setup_commands": [],
|
|
"validation": {
|
|
"commands": [
|
|
{
|
|
"description": "NetworkPolicy 'restrict-egress' exists",
|
|
"command": "kubectl get networkpolicy restrict-egress -o jsonpath='{.metadata.name}'",
|
|
"expected_output": "restrict-egress",
|
|
"match": "exact"
|
|
},
|
|
{
|
|
"description": "Policy applies to role=isolated pods",
|
|
"command": "kubectl get networkpolicy restrict-egress -o jsonpath='{.spec.podSelector.matchLabels.role}'",
|
|
"expected_output": "isolated",
|
|
"match": "exact"
|
|
},
|
|
{
|
|
"description": "Policy type includes Egress",
|
|
"command": "kubectl get networkpolicy restrict-egress -o jsonpath='{.spec.policyTypes[*]}'",
|
|
"expected_output": "Egress",
|
|
"match": "contains"
|
|
},
|
|
{
|
|
"description": "Egress allowed to role=allowed pods",
|
|
"command": "kubectl get networkpolicy restrict-egress -o jsonpath='{.spec.egress[0].to[0].podSelector.matchLabels.role}'",
|
|
"expected_output": "allowed",
|
|
"match": "exact"
|
|
}
|
|
]
|
|
},
|
|
"default_namespace": "default",
|
|
"teardown_commands": [
|
|
{
|
|
"command": "kubectl delete networkpolicy restrict-egress --ignore-not-found"
|
|
}
|
|
]
|
|
}
|