KEP-3325: Review attibutes of a current user
KEP-3325: Self subject review API
- Release Signoff Checklist
- Summary
- Motivation
- Proposal
- Design Details
- Production Readiness Review Questionnaire
- Implementation History
- Alternatives
Release Signoff Checklist
Items marked with (R) are required prior to targeting to a milestone / release.
- (R) Enhancement issue in release milestone, which links to KEP dir in kubernetes/enhancements (not the initial KEP PR)
- (R) KEP approvers have approved the KEP status as
implementable - (R) Design details are appropriately documented
- (R) Test plan is in place, giving consideration to SIG Architecture and SIG Testing input (including test refactors)
- e2e Tests for all Beta API Operations (endpoints)
- (R) Ensure GA e2e tests for meet requirements for Conformance Tests
- (R) Minimum Two Week Window for GA e2e tests to prove flake free
- (R) Graduation criteria is in place
- (R) all GA Endpoints must be hit by Conformance Tests
- (R) Production readiness review completed
- (R) Production readiness review approved
- “Implementation History” section is up-to-date for milestone
- User-facing documentation has been created in kubernetes/website , for publication to kubernetes.io
- Supporting documentation—e.g., additional design documents, links to mailing list discussions/SIG meetings, relevant PRs/issues, release notes
Summary
There is no resource which represents a user in Kubernetes. Instead, Kubernetes has authenticators to get user attributes from tokens or x509 certificates or by using the OIDC provider or receiving them from the external webhook. This KEP proposes adding a new API endpoint to see what attributes the current user has after the authentication.
Motivation
Authentication is complicated, especially made by proxy or webhook authenticators or their combinations. It may be obscure which user attributes the user eventually gets after all that magic happened before authentication. The motivation for this KEP is to reduce obscurity and help users with debugging the authentication stack.
Goals
- Add the API endpoint to get user attributes
- Add a corresponding kubectl command -
kubectl auth whoami
Non-Goals
Proposal
Add a new API endpoint to the authentication.k8s.io group - SelfSubjectReview.
The user will hit the endpoint after authentication happens, so all attributes will be available to return.
Design Details
This design is inspired by the *AccessReview and TokenReview APIs.
The endpoint has no input parameters or a spec field because only the authentication result is required.
Request
The structure for building a request:
type SelfSubjectReview struct {
metav1.TypeMeta `json:",inline"`
// Standard list metadata.
// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
// +optional
metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
// Status is filled in by the server with the user attributes.
Status SelfSubjectReviewStatus `json:"status,omitempty" protobuf:"bytes,2,opt,name=status"`
}
type SelfSubjectReviewStatus struct {
// User attributes of the current user.
// +optional
UserInfo authenticationv1.UserInfo `json:"userInfo,omitempty" protobuf:"bytes,1,opt,name=userInfo"`
}
On receiving a request, the Kubernetes API server fills the status with the user attributes and returns it to the user.
Request example (the body would be a SelfSubjectReview object):
POST /apis/authentication.k8s.io/v1alpha1/selfsubjectreviews
{
"apiVersion": "authentication.k8s.io/v1alpha1",
"kind": "SelfSubjectReview"
}
Response example:
{
"apiVersion": "authentication.k8s.io/v1alpha1",
"kind": "SelfSubjectReview",
"status": {
"userInfo": {
"name": "jane.doe",
"uid": "b6c7cfd4-f166-11ec-8ea0-0242ac120002",
"groups": [
"viewers",
"editors"
],
"extra": {
"provider_id": [
"token.company.dev"
]
}
}
}
}
User attributes are known at the moment of accessing the rest API endpoint and can be extracted from the request context.
NOTE: Unlike the TokenReview, there are no audiences in requests and responses since the SelfSubjectReview API can only be accessed using valid credentials against the API server, meaning that the audience must always be that of the API server. Thus learning this value is not practical.
RBAC
RBAC rules to grant access to this API should be present in the cluster by default.
It is implied that the system:basic-user cluster role will be extended to the following:
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
annotations:
rbac.authorization.kubernetes.io/autoupdate: "true"
labels:
kubernetes.io/bootstrapping: rbac-defaults
name: system:basic-user
rules:
- apiGroups:
- authorization.k8s.io
resources:
- selfsubjectaccessreviews
- selfsubjectrulesreviews
verbs:
- create
- apiGroups:
- authentication.k8s.io
resources:
- selfsubjectreviews
verbs:
- create
After reaching GA, the SelfSubjectReview API will be enabled by default. If necessary, it will be possible to disable this API by using the following kube-apiserver flag:
--runtime-config=authentication.k8s.io/v1alpha1/selfsubjectreviews=false
Test Plan
[x] I/we understand the owners of the involved components may require updates to existing tests to make this code solid enough prior to committing the changes necessary to implement this enhancement.
Prerequisite testing updates
Unit tests
k8s.io/kubectl/pkg/cmd/auth/whoami.go:23.09.2022-44%
Integration tests
k8s.io/kubernetes/test/integration/auth/selfsubjectreview_test.go
e2e tests
k8s.io/kubernetes/test/e2e/auth/selfsubjectreview.gok8s.io/kubernetes/test/cmd/auth_whoami.sh
Graduation Criteria
authentication.k8s.io/v1alpha1 and authentication.k8s.io/v1beta1 apis will be reintroduced to go through the graduation cycle.
Alpha
SelfSubjectReviewendpoint is introduced inauthentication.k8s.io/v1alpha1API- Feature implemented behind a feature flag
- Initial unit and integration tests completed and enabled
- Corresponding kubectl command implemented:
kubectl alpha auth whoami
Beta
- Gather feedback from users
SelfSubjectReviewis promoted toauthentication.k8s.io/v1beta1API (Beta APIs are not enabled by default, see ).- Promote feature gate to Beta and make it enabled by default
- Unit tests coverage improved
kubectl alpha auth whoamireplaced withkubectl auth whoamikubectl auth whoamicommand usesauthentication.k8s.io/v1beta1API, falls back toauthentication.k8s.io/v1alpha1API- Fix documentation
:
- Change API version
- Rewrite conditions to enable the feature
GA
SelfSubjectReviewis promoted toauthentication.k8s.io/v1API and enable by default- Promote feature gate to Stable
kubectl auth whoamicommand prefersauthentication.k8s.io/v1API overauthentication.k8s.io/v1beta1andauthentication.k8s.io/v1alpha1- More integration and e2e tests cases
- Add
test/cmdtest
- Add
- Fix documentation
:
- Change API version
- Rewrite conditions to enable the feature
NOTE: Should not be a part of conformance tests . The fact that a user possesses a token does not necessarily imply the power to know to whom that token belongs.
Production Readiness Review Questionnaire
Feature Enablement and Rollback
How can this feature be enabled / disabled in a live cluster?
- Feature gate (also fill in values in
kep.yaml)- Feature gate name:
APISelfSubjectReview - Components depending on the feature gate:
kube-apiserver
- Feature gate name:
Does enabling the feature change any default behavior?
It only adds new behavior and does not affect other pars of the Kubernetes.
Can the feature be disabled once it has been enabled (i.e. can we roll back the enablement)?
Yes.
What happens if we reenable the feature if it was previously rolled back?
It is possible to toggle this feature any number of times.
Are there any tests for feature enablement/disablement?
Does not require special testing frameworks.
Rollout, Upgrade and Rollback Planning
How can a rollout or rollback fail? Can it impact already running workloads?
Enabling the feature does not affect any workloads.
What specific metrics should inform a rollback?
Specific metrics are not required for the monitoring of this feature.
Were upgrade and rollback tested? Was the upgrade->downgrade->upgrade path tested?
Is the rollout accompanied by any deprecations and/or removals of features, APIs, fields of API types, flags, etc.?
Yes.
Monitoring Requirements
How can an operator determine if the feature is in use by workloads?
It is possible to see the rate of requests to the REST API endpoint.
How can someone using this feature know that it is working for their instance?
It will be possible to make a request to the REST API endpoint.
What are the reasonable SLOs (Service Level Objectives) for the enhancement?
The feature utilizes core mechanisms of the Kubernetes API server, so the maximum possible SLO is applicable.
What are the SLIs (Service Level Indicators) an operator can use to determine the health of the service?
The apiserver_request_* metrics family is helpful to be aware of how many requests to the endpoint are in your cluster and how many of them failed.
{__name__=~"apiserver_request_.*", group="authentication.k8s.io", resource="selfsubjectreviews"}
Are there any missing metrics that would be useful to have to improve observability of this feature?
All useful metrics are already present. This feature only requires metrics linked to authentication process.
Dependencies
Does this feature depend on any specific services running in the cluster?
It depends only on authentication and how this process is tuned in the current Kubernetes cluster.
Scalability
Will enabling / using this feature result in any new API calls?
No.
Will enabling / using this feature result in introducing new API types?
Group: authentication.k8s.io
Kind: SelfSubjectReview
Will enabling / using this feature result in any new calls to the cloud provider?
No.
Will enabling / using this feature result in increasing size or count of the existing API objects?
No.
Will enabling / using this feature result in increasing time taken by any operations covered by existing SLIs/SLOs?
No.
Will enabling / using this feature result in non-negligible increase of resource usage (CPU, RAM, disk, IO, …) in any components?
No.
Troubleshooting
How does this feature react if the API server and/or etcd is unavailable?
The authentication error will be returned.
What are other known failure modes?
The only possible errors are authentication errors.
What steps should be taken if SLOs are not being met to determine the problem?
No steps required.
Implementation History
Alternatives
This feature can be implemented by delegating some requests to the external API server.
A good example of this schema working is vmware-tanzu/pinniped
and their whoami
API.
However, it is complicated to maintain an additional API server for this case, and it integrates poorly with tooling, e.g., client-go, kubectl.