Skip to content

Commit

Permalink
short circuit deny
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedanese committed Dec 1, 2017
1 parent f169101 commit 787820c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/admin/authorization/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@ depend on specific fields of specific kinds of objects are handled by Admission
Controllers.)

When multiple authorization modules are configured, each is checked in sequence,
and if any module authorizes the request, then the request can proceed. If all
modules deny the request, then the request is denied (HTTP status code 403).
and if any module authorizes the request, then the request can proceed. If any
module denies the request, the request is denied. If all modules have no opinion
on the request, then the request is denied. A deny returns an HTTP status code
403.

## Review Your Request Attributes
Kubernetes reviews only the following API request attributes:
Expand Down

0 comments on commit 787820c

Please sign in to comment.