TokenReview

    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.


    TokenReviewSpec is a description of the token authentication request.


    • audiences ([]string)

      Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver.

    • token (string)

    TokenReviewStatus is the result of the token authentication request.


    • audiences ([]string)

      Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token’s audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is “true”, the token is valid against the audience of the Kubernetes API server.

    • authenticated (boolean)

      Authenticated indicates that the token was associated with a known user.

    • user (UserInfo)

      User is the UserInfo associated with the provided token.

      UserInfo holds the information about the user needed to implement the user.Info interface.

      • user.extra (map[string][]string)

        Any additional information provided by the authenticator.

      • user.groups ([]string)

        The names of groups this user is a part of.

      • user.uid (string)

      • user.username (string)

        The name that uniquely identifies this user among all active users.


    HTTP Request

    POST /apis/authentication.k8s.io/v1/tokenreviews

    Parameters

    • body: , required

    • dryRun (in query): string

      dryRun

    • fieldManager (in query): string

    • pretty (in query): string

      pretty

    Response

    200 (TokenReview): OK

    201 (): Created

    202 (TokenReview): Accepted