Kubernetes / Access control

See who can do what.
Know exactly why.

Turn Roles and bindings into an understandable access map. Test an identity, surface risky grants, and compare changes before they reach a cluster.

01 / Provide policy

RBAC manifests

YAML or JSON

Tip: export only RBAC objects. Kubeconfig and Secret input is blocked.

Waiting for RBAC manifests.
02 / Review access

Access posture

Not analyzed

Make RBAC relationships visible

Add manifests on the left or load the sample to build an effective permission map and security review.

04 / Use responsibly

Understand the model and its limits.

Kubernetes RBAC permissions are additive: Roles define permissions, while bindings grant those permissions to identities at namespace or cluster scope.

Scope

Bindings decide where access applies

A RoleBinding grants access only in its namespace—even when it references a ClusterRole. A ClusterRoleBinding grants cluster-wide access.

Completeness

Analyze a complete export

Referenced roles must be included. External authorization webhooks, admission policies, and identity-provider group membership are not inferred.

Verification

Confirm against the live cluster

Use kubectl auth can-i for an authoritative live-cluster check after reviewing this static model.

Read the official Kubernetes RBAC documentation