Hi,
Question 13 in CKAD Mock Exam 2, is really simple -
Update pod ckad06-cap-aecs
in the namespace ckad05-securityctx-aecs
to run as root user and with the SYS_TIME
and NET_ADMIN
capabilities.
I added -
securityContext:
capabilities:
add: ["SYS_TIME", "NET_ADMIN"]
But since you wrote: “…to run as root user and…”, I also added
- runAsUser: 0
Why it’s not in the “correct answer”?