{ "id": "cks-seccomp-profile", "title": "Seccomp Profiles", "category": "Workload Security", "difficulty": "Hard", "type": "task", "weight": 6, "description": "## Secure Computing Mode (Seccomp)\n\nSeccomp restricts the system calls that a container can make to the host kernel.\n\n**Your task:**\n\nCreate a Pod named `seccomp-pod` using the `busybox:1.36` image (command: `sleep 3600`). Configure the pod so its seccomp profile type is set to `RuntimeDefault`.\n\n```bash\n# Tip: Review PodSecurityContext documentation\n```", "hints": [ { "title": "Set seccompProfile", "body": "Add `seccompProfile: { type: RuntimeDefault }` to the pod's securityContext.", "command": "cat <