A developer wants a basic syscall filter on app Pods without custom profiles. Which seccompProfile setting is appropriate awareness-level hardening?
Select an answer to reveal the explanation.
Short Explanation
RuntimeDefault is the stock "safe syscall playlist" the container runtime already ships. Point seccompProfile at it for baseline filtering without hand-writing profiles. Privileged mode and hostNetwork don't give you that filter for free.
Full Explanation
Kubernetes can apply seccomp via securityContext.seccompProfile; type RuntimeDefault uses the runtime's default syscall allowlist and is common baseline hardening for application Pods. privileged: true and hostNetwork do not substitute for an explicit RuntimeDefault profile, and Services do not apply seccomp.