POST /apis/authentication.k8s.io/v1beta1/tokenreviews HTTP/1.1 Authorization: Bearer $TOKEN Accept: application/json Connection: close Content-Type: application/json' { "kind": "TokenReview", "apiVersion": "authentication.k8s.io/v1beta1", ... }
TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.
Expand or mouse-over a field for more information about it.
apiVersion:kind:Collapse allmetadata:
Collapse allannotations:
[string]:clusterName:creationTimestamp:deletionGracePeriodSeconds:deletionTimestamp:Collapse allfinalizers:
- [string]:generateName:generation:Collapse allinitializers:
Collapse allpending:
- name:Collapse allresult:
apiVersion:code:Collapse alldetails:
Collapse allcauses:
- field:message:reason:group:kind:name:retryAfterSeconds:uid:kind:message:Collapse allmetadata:
resourceVersion:selfLink:reason:status:Collapse alllabels:
[string]:name:namespace:Collapse allownerReferences:
- apiVersion:blockOwnerDeletion:controller:kind:name:uid:resourceVersion:selfLink:uid:Collapse allspec:
token:Collapse allstatus:
authenticated:error:Collapse alluser:
Collapse allextra:
[string]:Collapse allgroups:
- [string]:uid:username:
Create a TokenReview
POST /apis/authentication.k8s.io/v1beta1/tokenreviews HTTP/1.1 Authorization: Bearer $TOKEN Accept: application/json Connection: close Content-Type: application/json' { "kind": "TokenReview", "apiVersion": "authentication.k8s.io/v1beta1", ... }
$ curl -k \ -X POST \ -d @- \ -H "Authorization: Bearer $TOKEN" \ -H 'Accept: application/json' \ -H 'Content-Type: application/json' \ https://$ENDPOINT/apis/authentication.k8s.io/v1beta1/tokenreviews <<'EOF' { "kind": "TokenReview", "apiVersion": "authentication.k8s.io/v1beta1", ... } EOF