-
Notifications
You must be signed in to change notification settings - Fork 231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AUTH-8: Move usercache from the oauth-apiserver to lib-go #1223
Conversation
/lgtm |
|
||
// ByUserIndexKeys is cache.IndexFunc for Groups that will index groups by User, so that a direct cache lookup | ||
// using a User.Name will return all Groups that User is a member of | ||
func ByUserIndexKeys(obj interface{}) ([]string, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
intentionally public?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, it's needed to set up the indexer for the given informer: https://github.com/openshift/oauth-apiserver/blob/7423fd05978658842ca56236d315e28a4fa6d40a/pkg/oauth/apiserver/apiserver.go#L109-L114
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: s-urbaniak, stlaz, sttts The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
This PR moves the usercache from the oauth-apiserver (https://github.com/openshift/oauth-apiserver/blob/7423fd05978658842ca56236d315e28a4fa6d40a/pkg/tokenvalidation/usercache/groups.go) to library-go so that it is reusable in the oauth-server group sync (openshift/oauth-server#87).
cc @openshift/openshift-team-auth-maintainers