2016-02-24 21:47:57 +00:00
---
2016-07-29 17:36:25 +00:00
assignees:
- erictune
- lavalamp
2016-11-15 02:09:57 +00:00
- deads2k
- liggitt
2017-02-25 05:27:06 +00:00
title: Overview
2016-02-24 21:47:57 +00:00
---
2016-02-26 11:54:48 +00:00
In Kubernetes, authorization happens as a separate step from authentication.
2016-05-03 00:24:28 +00:00
See the [Accessing Control Overview ](/docs/admin/accessing-the-api/ ) for an
overview of how authentication and authorization are applied to requests.
2016-02-26 11:54:48 +00:00
Authorization applies to all HTTP accesses on the main (secure) apiserver port.
The authorization check for any request compares attributes of the context of
the request, (such as user, resource, and namespace) with access
policies. An API call must be allowed by some policy in order to proceed.
The following implementations are available, and are selected by flag:
2016-04-04 17:15:19 +00:00
- `--authorization-mode=AlwaysDeny` blocks all requests (used in tests).
- `--authorization-mode=AlwaysAllow` allows all requests; use if you don't
need authorization.
2016-05-03 00:24:28 +00:00
- `--authorization-mode=ABAC` allows for a simple local-file-based user-configured
authorization policy. ABAC stands for Attribute-Based Access Control.
2017-02-14 21:58:09 +00:00
- `--authorization-mode=RBAC` allows for authorization to be driven by policy
stored in the Kubernetes API. RBAC stands for Role-Based Access Control.
2016-04-04 17:15:19 +00:00
- `--authorization-mode=Webhook` allows for authorization to be driven by a
remote service using REST.
2016-02-26 11:54:48 +00:00
2016-06-07 23:56:17 +00:00
If multiple modes are provided the set is unioned, and only a single authorizer is required to admit the action. This means the flag:
```
--authorization-mode=AlwaysDeny,AlwaysAllow
```
will always allow.
2016-08-03 20:51:53 +00:00
## Request Attributes
2016-02-26 11:54:48 +00:00
2016-03-06 12:26:30 +00:00
A request has the following attributes that can be considered for authorization:
2016-04-04 17:15:19 +00:00
2016-02-26 11:54:48 +00:00
- user (the user-string which a user was authenticated as).
- group (the list of group names the authenticated user is a member of).
2016-08-03 20:51:53 +00:00
- "extra" (a map of arbitrary string keys to string values, provided by the authentication layer)
2016-03-06 12:26:30 +00:00
- whether the request is for an API resource.
- the request path.
2016-08-02 23:37:38 +00:00
- allows authorizing access to miscellaneous non-resource endpoints like `/api` or `/healthz` (see [kubectl ](#kubectl )).
2016-03-06 12:26:30 +00:00
- the request verb.
2016-08-05 07:39:48 +00:00
- API verbs `get` , `list` , `create` , `update` , `patch` , `watch` , `proxy` , `redirect` , `delete` , and `deletecollection` are used for resource requests
2016-08-03 20:51:53 +00:00
- HTTP verbs `get` , `post` , `put` , and `delete` are used for non-resource requests
2016-08-02 23:37:38 +00:00
- what resource is being accessed (for resource requests only)
2016-08-03 20:51:53 +00:00
- what subresource is being accessed (for resource requests only)
- the namespace of the object being accessed (for namespaced resource requests only)
2017-01-10 21:58:04 +00:00
- the API group being accessed (for resource requests only); an empty string designates the [core API group ](/docs/api/ )
2016-08-02 23:37:38 +00:00
The request verb for a resource API endpoint can be determined by the HTTP verb used and whether or not the request acts on an individual resource or a collection of resources:
HTTP verb | request verb
----------|---------------
POST | create
GET, HEAD | get (for individual resources), list (for collections)
PUT | update
PATCH | patch
DELETE | delete (for individual resources), deletecollection (for collections)
2016-02-26 11:54:48 +00:00
2016-08-03 20:51:53 +00:00
## ABAC Mode
2016-02-26 11:54:48 +00:00
### Policy File Format
For mode `ABAC` , also specify `--authorization-policy-file=SOME_FILENAME` .
2016-04-04 17:15:19 +00:00
The file format is [one JSON object per line ](http://jsonlines.org/ ). There
should be no enclosing list or map, just one map per line.
Each line is a "policy object". A policy object is a map with the following
properties:
2016-02-26 11:54:48 +00:00
2016-03-06 12:26:30 +00:00
- Versioning properties:
- `apiVersion` , type string; valid values are "abac.authorization.kubernetes.io/v1beta1". Allows versioning and conversion of the policy format.
- `kind` , type string: valid values are "Policy". Allows versioning and conversion of the policy format.
- `spec` property set to a map with the following properties:
- Subject-matching properties:
2016-12-19 15:02:32 +00:00
- `user` , type string; the user-string from `--token-auth-file` . If you specify `user` , it must match the username of the authenticated user.
- `group` , type string; if you specify `group` , it must match one of the groups of the authenticated user. `system:authenticated` matches all authenticated requests. `system:unauthenticated` matches all unauthenticated requests.
2016-03-06 12:26:30 +00:00
- Resource-matching properties:
2017-03-05 21:53:32 +00:00
- `apiGroup` , type string; an API group.
- Ex: `extensions`
- Wildard: `*` matches all API groups.
- `namespace` , type string; a namespace.
- Ex: `kube-system`
- Wildard: `*` matches all resource requests.
- `resource` , type string; a resource type
- Ex: `pods`
- Wildcard: `*` matches all resource requests.
2016-03-06 12:26:30 +00:00
- Non-resource-matching properties:
2017-03-05 21:53:32 +00:00
- `nonResourcePath` , type string; non-resource request paths.
- Ex: `/version` or `/apis`
- Wildcard:
- `*` matches all non-resource requests.
- `/foo/*` matches `/foo/` and all of its subpaths.
- `readonly` , type boolean, when true, means that the policy only applies to get, list, and watch operations.
2016-02-26 11:54:48 +00:00
2017-03-05 21:53:32 +00:00
**NOTES:** An unset property is the same as a property set to the zero value for its type
2016-04-04 17:15:19 +00:00
(e.g. empty string, 0, false). However, unset should be preferred for
readability.
2016-02-26 11:54:48 +00:00
2016-04-04 17:15:19 +00:00
In the future, policies may be expressed in a JSON format, and managed via a
REST interface.
2016-02-26 11:54:48 +00:00
### Authorization Algorithm
A request has attributes which correspond to the properties of a policy object.
When a request is received, the attributes are determined. Unknown attributes
are set to the zero value of its type (e.g. empty string, 0, false).
2016-08-02 23:37:38 +00:00
A property set to `"*"` will match any value of the corresponding attribute.
2016-02-26 11:54:48 +00:00
2016-04-04 17:15:19 +00:00
The tuple of attributes is checked for a match against every policy in the
policy file. If at least one line matches the request attributes, then the
request is authorized (but may fail later validation).
2016-10-20 19:27:42 +00:00
To permit any authenticated user to do something, write a policy with the
2016-12-19 15:02:32 +00:00
group property set to `"system:authenticated"` .
2016-10-20 19:27:42 +00:00
To permit any unauthenticated user to do something, write a policy with the
2016-12-19 15:02:32 +00:00
group property set to `"system:unauthenticated"` .
2016-02-26 11:54:48 +00:00
2016-04-04 17:15:19 +00:00
To permit a user to do anything, write a policy with the apiGroup, namespace,
2016-08-02 23:37:38 +00:00
resource, and nonResourcePath properties set to `"*"` .
2016-03-06 12:26:30 +00:00
### Kubectl
2016-04-04 17:15:19 +00:00
Kubectl uses the `/api` and `/apis` endpoints of api-server to negotiate
client/server versions. To validate objects sent to the API by create/update
operations, kubectl queries certain swagger resources. For API version `v1`
those would be `/swaggerapi/api/v1` & `/swaggerapi/experimental/v1` .
2016-03-06 12:26:30 +00:00
2016-04-04 17:15:19 +00:00
When using ABAC authorization, those special resources have to be explicitly
exposed via the `nonResourcePath` property in a policy (see [examples ](#examples ) below):
2016-03-06 12:26:30 +00:00
* `/api` , `/api/*` , `/apis` , and `/apis/*` for API version negotiation.
* `/version` for retrieving the server version via `kubectl version` .
* `/swaggerapi/*` for create/update operations.
2016-04-04 17:15:19 +00:00
To inspect the HTTP calls involved in a specific kubectl operation you can turn
up the verbosity:
2016-03-06 12:26:30 +00:00
kubectl --v=8 version
2016-02-26 11:54:48 +00:00
### Examples
2016-08-02 23:37:38 +00:00
1. Alice can do anything to all resources:
```json
{"apiVersion": "abac.authorization.kubernetes.io/v1beta1", "kind": "Policy", "spec": {"user": "alice", "namespace": "*", "resource": "*", "apiGroup": "*"}}
```
2. Kubelet can read any pods:
```json
{"apiVersion": "abac.authorization.kubernetes.io/v1beta1", "kind": "Policy", "spec": {"user": "kubelet", "namespace": "*", "resource": "pods", "readonly": true}}
```
3. Kubelet can read and write events:
```json
{"apiVersion": "abac.authorization.kubernetes.io/v1beta1", "kind": "Policy", "spec": {"user": "kubelet", "namespace": "*", "resource": "events"}}
```
4. Bob can just read pods in namespace "projectCaribou":
```json
{"apiVersion": "abac.authorization.kubernetes.io/v1beta1", "kind": "Policy", "spec": {"user": "bob", "namespace": "projectCaribou", "resource": "pods", "readonly": true}}
```
5. Anyone can make read-only requests to all non-resource paths:
```json
2016-12-19 15:02:32 +00:00
{"apiVersion": "abac.authorization.kubernetes.io/v1beta1", "kind": "Policy", "spec": {"group": "system:authenticated", "readonly": true, "nonResourcePath": "*"}}
{"apiVersion": "abac.authorization.kubernetes.io/v1beta1", "kind": "Policy", "spec": {"group": "system:unauthenticated", "readonly": true, "nonResourcePath": "*"}}
2016-08-02 23:37:38 +00:00
```
2016-02-26 11:54:48 +00:00
[Complete file example ](http://releases.k8s.io/{{page.githubbranch}}/pkg/auth/authorizer/abac/example_policy_file.jsonl )
### A quick note on service accounts
2016-04-04 17:15:19 +00:00
A service account automatically generates a user. The user's name is generated
according to the naming convention:
2016-02-26 11:54:48 +00:00
```shell
system:serviceaccount:< namespace > :< serviceaccountname >
```
2016-04-04 17:15:19 +00:00
Creating a new namespace also causes a new service account to be created, of
2016-08-02 23:37:38 +00:00
this form:
2016-02-26 11:54:48 +00:00
```shell
system:serviceaccount:< namespace > :default
```
2016-04-04 17:15:19 +00:00
For example, if you wanted to grant the default service account in the
kube-system full privilege to the API, you would add this line to your policy
file:
2016-02-26 11:54:48 +00:00
```json
2016-06-28 22:07:34 +00:00
{"apiVersion":"abac.authorization.kubernetes.io/v1beta1","kind":"Policy","spec":{"user":"system:serviceaccount:kube-system:default","namespace":"*","resource":"*","apiGroup":"*"}}
2016-02-26 11:54:48 +00:00
```
The apiserver will need to be restarted to pickup the new policy lines.
2016-06-07 23:56:17 +00:00
## RBAC Mode
When specified "RBAC" (Role-Based Access Control) uses the
"rbac.authorization.k8s.io" API group to drive authorization decisions,
allowing admins to dynamically configure permission policies through the
Kubernetes API.
2017-02-14 22:08:28 +00:00
As of 1.6 RBAC mode is in beta.
2016-06-07 23:56:17 +00:00
2017-02-14 22:08:28 +00:00
To enable RBAC, start the apiserver with `--authorization-mode=RBAC` .
2016-07-10 15:09:46 +00:00
2017-02-14 22:08:28 +00:00
For details about administrating and using RBAC, view the [RBAC guide ](/docs/admin/authorization/rbac ).
2017-01-09 15:47:57 +00:00
2016-03-06 12:26:30 +00:00
## Webhook Mode
2016-04-04 17:15:19 +00:00
When specified, mode `Webhook` causes Kubernetes to query an outside REST
service when determining user privileges.
2016-03-06 12:26:30 +00:00
### Configuration File Format
2016-04-04 17:15:19 +00:00
Mode `Webhook` requires a file for HTTP configuration, specify by the
`--authorization-webhook-config-file=SOME_FILENAME` flag.
2016-03-06 12:26:30 +00:00
2016-04-04 17:15:19 +00:00
The configuration file uses the [kubeconfig ](/docs/user-guide/kubeconfig-file/ )
file format. Within the file "users" refers to the API Server webhook and
"clusters" refers to the remote service.
2016-03-06 12:26:30 +00:00
A configuration example which uses HTTPS client auth:
```yaml
# clusters refers to the remote service.
clusters:
- name: name-of-remote-authz-service
cluster:
certificate-authority: /path/to/ca.pem # CA for verifying the remote service.
server: https://authz.example.com/authorize # URL of remote service to query. Must use 'https'.
# users refers to the API Server's webhook configuration.
users:
- name: name-of-api-server
user:
client-certificate: /path/to/cert.pem # cert for the webhook plugin to use
client-key: /path/to/key.pem # key matching the cert
2016-03-14 20:57:08 +00:00
# kubeconfig files require a context. Provide one for the API Server.
current-context: webhook
contexts:
- context:
cluster: name-of-remote-authz-service
user: name-of-api-sever
name: webhook
2016-03-06 12:26:30 +00:00
```
### Request Payloads
2016-04-04 17:15:19 +00:00
When faced with an authorization decision, the API Server POSTs a JSON
serialized api.authorization.v1beta1.SubjectAccessReview object describing the
action. This object contains fields describing the user attempting to make the
request, and either details about the resource being accessed or requests
attributes.
2016-03-06 12:26:30 +00:00
2016-04-04 17:15:19 +00:00
Note that webhook API objects are subject to the same [versioning compatibility rules ](/docs/api/ )
2017-01-27 21:34:36 +00:00
as other Kubernetes API objects. Implementers should be aware of looser
2016-04-04 17:15:19 +00:00
compatibility promises for beta objects and check the "apiVersion" field of the
request to ensure correct deserialization. Additionally, the API Server must
enable the `authorization.k8s.io/v1beta1` API extensions group (`--runtime-config=authorization.k8s.io/v1beta1=true`).
2016-03-06 12:26:30 +00:00
An example request body:
```json
{
"apiVersion": "authorization.k8s.io/v1beta1",
"kind": "SubjectAccessReview",
"spec": {
"resourceAttributes": {
"namespace": "kittensandponies",
"verb": "GET",
2016-12-19 15:02:32 +00:00
"group": "unicorn.example.org",
2016-03-06 12:26:30 +00:00
"resource": "pods"
},
"user": "jane",
"group": [
"group1",
"group2"
]
}
}
```
2016-04-04 17:15:19 +00:00
The remote service is expected to fill the SubjectAccessReviewStatus field of
the request and respond to either allow or disallow access. The response body's
"spec" field is ignored and may be omitted. A permissive response would return:
2016-03-06 12:26:30 +00:00
```json
{
"apiVersion": "authorization.k8s.io/v1beta1",
"kind": "SubjectAccessReview",
"status": {
"allowed": true
}
}
```
To disallow access, the remote service would return:
```json
{
"apiVersion": "authorization.k8s.io/v1beta1",
"kind": "SubjectAccessReview",
"status": {
"allowed": false,
"reason": "user does not have read access to the namespace"
}
}
```
Access to non-resource paths are sent as:
```json
{
"apiVersion": "authorization.k8s.io/v1beta1",
"kind": "SubjectAccessReview",
"spec": {
"nonResourceAttributes": {
"path": "/debug",
"verb": "GET"
},
"user": "jane",
"group": [
"group1",
"group2"
]
}
}
```
2016-04-04 17:15:19 +00:00
Non-resource paths include: `/api` , `/apis` , `/metrics` , `/resetMetrics` ,
`/logs` , `/debug` , `/healthz` , `/swagger-ui/` , `/swaggerapi/` , `/ui` , and
2016-11-15 02:10:10 +00:00
`/version.` Clients require access to `/api` , `/api/*` , `/apis` , `/apis/*` ,
and `/version` to discover what resources and versions are present on the server.
Access to other non-resource paths can be disallowed without restricting access
to the REST api.
2016-03-06 12:26:30 +00:00
2016-04-04 17:15:19 +00:00
For further documentation refer to the authorization.v1beta1 API objects and
plugin/pkg/auth/authorizer/webhook/webhook.go.
2016-03-06 12:26:30 +00:00
2016-05-03 00:24:28 +00:00
## Module Development
2016-02-26 11:54:48 +00:00
Other implementations can be developed fairly easily.
The APIserver calls the Authorizer interface:
```go
type Authorizer interface {
Authorize(a Attributes) error
}
```
to determine whether or not to allow each API action.
An authorization plugin is a module that implements this interface.
Authorization plugin code goes in `pkg/auth/authorizer/$MODULENAME` .
An authorization module can be completely implemented in go, or can call out
to a remote authorization service. Authorization modules can implement
their own caching to reduce the cost of repeated authorization calls with the
2016-04-04 17:15:19 +00:00
same or similar arguments. Developers should then consider the interaction
between caching and revocation of permissions.
2016-09-13 12:14:44 +00:00
### Checking API Access
Kubernetes exposes the `subjectaccessreviews.v1beta1.authorization.k8s.io` resource as a
normal resource that allows external access to API authorizer decisions. No matter which authorizer
you choose to use, you can issue a `POST` with a `SubjectAccessReview` just like the webhook
authorizer to the `apis/authorization.k8s.io/v1beta1/subjectaccessreviews` endpoint and
get back a response. For instance:
```bash
kubectl create --v=8 -f - << __EOF__
{
"apiVersion": "authorization.k8s.io/v1beta1",
"kind": "SubjectAccessReview",
"spec": {
"resourceAttributes": {
"namespace": "kittensandponies",
"verb": "GET",
"group": "unicorn.example.org",
"resource": "pods"
},
"user": "jane",
"group": [
"group1",
"group2"
]
}
}
__EOF__
--- snip lots of output ---
2016-12-19 15:02:32 +00:00
I0913 08:12:31.362873 27425 request.go:908] Response Body: {"kind":"SubjectAccessReview","apiVersion":"authorization.k8s.io/v1beta1","metadata":{"creationTimestamp":null},"spec":{"resourceAttributes":{"namespace":"kittensandponies","verb":"GET","group":"unicorn.example.org","resource":"pods"},"user":"jane","group":["group1","group2"]},"status":{"allowed":true}}
2016-09-13 12:14:44 +00:00
subjectaccessreview "" created
```
This is useful for debugging access problems, in that you can use this resource
2016-09-25 22:33:10 +00:00
to determine what access an authorizer is granting.