On-call staff need a ServiceAccount that can inspect Pods and Deployments in the billing namespace for troubleshooting but must not delete or mutate them. Which Role verb set best matches least privilege?
Select an answer to reveal the explanation.
Short Explanation
Read-only support is like a library card: look and list, do not rewrite the books. get, list, and watch cover inspection. delete and patch are write powers on-call does not need for pure troubleshooting.
Full Explanation
RBAC verbs finely control what a subject may do. Read-oriented troubleshooting typically needs get, list, and watch. Mutating verbs such as create, update, patch, and delete, or privilege-escalating verbs like bind, escalate, and impersonate, exceed a read-only support account. Least privilege Roles list only the verbs required for the job.