Kubernetes RBAC Review
Purpose
Review Kubernetes RBAC objects — Roles, ClusterRoles, RoleBindings, ClusterRoleBindings, and ServiceAccounts — against least privilege, namespace scope minimization, and operational safety.
Lean operating rules
- Prefer live cluster evidence (
kubectl auth can-i, kubectl get rolebinding, audit logs) when the active client exposes it; otherwise fall back to official Kubernetes documentation and sanitized user evidence.
- Separate confirmed facts from inference. If state was not queried or shown, say so.
- Challenge cluster-scoped access granted to workloads that only need namespace-scoped access.
- Challenge wildcard verbs (
*), wildcard resources (*), and wildcard API groups (*) unless explicitly justified.
- Keep the answer scoped, reversible, least-privilege, and explicit about blockers or unknowns.
References
Load these only when needed:
- Evidence path and tooling — use when choosing live cluster evidence, confirming MCP capability, or switching to documentation mode.
- Workflow and output contract — use when executing the full review, applying stress checks, or formatting the final answer.
- Official sources — use when you need the detailed Kubernetes documentation list or source notes.
Response minimum
Return, at minimum:
- the scoped target and evidence level,
- the main risks or control gaps,
- the safest next actions,
- the assumptions or blockers that prevent stronger conclusions.
Source: Raishin/vanguard-frontier-agentic — distributed by TomeVault.
1---2name: raishin-vanguard-frontier-agentic-kubernetes-rbac-review3description: Kubernetes RBAC Review4---56# Kubernetes RBAC Review78## Purpose910Review Kubernetes RBAC objects — Roles, ClusterRoles, RoleBindings, ClusterRoleBindings, and ServiceAccounts — against least privilege, namespace scope minimization, and operational safety.1112## Lean operating rules1314- Prefer live cluster evidence (`kubectl auth can-i`, `kubectl get rolebinding`, audit logs) when the active client exposes it; otherwise fall back to official Kubernetes documentation and sanitized user evidence.15- Separate confirmed facts from inference. If state was not queried or shown, say so.16- Challenge cluster-scoped access granted to workloads that only need namespace-scoped access.17- Challenge wildcard verbs (`*`), wildcard resources (`*`), and wildcard API groups (`*`) unless explicitly justified.18- Keep the answer scoped, reversible, least-privilege, and explicit about blockers or unknowns.1920## References2122Load these only when needed:2324- [Evidence path and tooling](references/mcp-and-evidence.md) — use when choosing live cluster evidence, confirming MCP capability, or switching to documentation mode.25- [Workflow and output contract](references/workflow-and-output.md) — use when executing the full review, applying stress checks, or formatting the final answer.26- [Official sources](references/official-sources.md) — use when you need the detailed Kubernetes documentation list or source notes.2728## Response minimum2930Return, at minimum:3132- the scoped target and evidence level,33- the main risks or control gaps,34- the safest next actions,35- the assumptions or blockers that prevent stronger conclusions.3637---38> Source: [Raishin/vanguard-frontier-agentic](https://github.com/Raishin/vanguard-frontier-agentic) — distributed by [TomeVault](https://tomevault.io).39<!-- tomevault:4.0:skill_md:2026-05-22 -->