This repository has been archived on 2025-01-23. You can view files and clone it, but cannot push or open issues or pull requests.
traefik-certmanager/kubernetes/docs/V1TokenReviewStatus.md
Tom Neuber 9129813244
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful
fix(kubernetes): temporary solution for updated k8s python client
2025-01-05 00:33:58 +01:00

1.3 KiB

V1TokenReviewStatus

TokenReviewStatus is the result of the token authentication request.

Properties

Name Type Description Notes
audiences list[str] 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 kubernetes.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. [optional]
authenticated bool Authenticated indicates that the token was associated with a known user. [optional]
error str Error indicates that the token couldn't be checked [optional]
user V1UserInfo [optional]

[Back to Model list] [Back to API list] [Back to README]