Jump to navigation ↓

SelfSubjectReview authentication.k8s.io/v1

SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request. When using impersonation, users will receive the user info of the user being impersonated. If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase.

Fields

apiVersion: authentication.k8s.io/v1
kind: SelfSubjectReview
metadata (ObjectMeta)

metadata is standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

status (SelfSubjectReviewStatus)

status is filled in by the server with the user attributes.

SelfSubjectReviewStatus

SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.

userInfo (UserInfo)

userInfo is a set of attributes belonging to the user making this request.

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

userInfo.extra (map[string]string)

extra is any additional information provided by the authenticator.

userInfo.groups ([]string)

groups is the names of groups this user is a part of.

userInfo.uid (string)

uid is a unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.

userInfo.username (string)

username is the name that uniquely identifies this user among all active users.