-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Authentication processor 3/4 - Add implementation #1809
Authentication processor 3/4 - Add implementation #1809
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1809 +/- ##
==========================================
+ Coverage 91.16% 91.19% +0.03%
==========================================
Files 271 272 +1
Lines 16235 16337 +102
==========================================
+ Hits 14801 14899 +98
- Misses 1008 1010 +2
- Partials 426 428 +2
Continue to review full report at Codecov.
|
007f9f9
to
69ebc55
Compare
Please rebase |
Signed-off-by: Juraci Paixão Kröhling <[email protected]>
69ebc55
to
b41363e
Compare
} | ||
|
||
func (o *oidcAuthenticator) UnaryInterceptor(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) { | ||
return o.unaryInterceptor(ctx, req, info, handler, o.Authenticate) |
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.
@bogdandrutu just realized that moving this to config/configauth/internal
might be easier than I thought. I'd still do it in a follow-up PR if you agree.
Any news on this one? |
Ping @bogdandrutu |
return nil | ||
} | ||
|
||
func (o *oidcAuthenticator) Close() 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.
In a different PR, rename to Shutdown
and pass Context
.
Description: Added the OIDC authenticator. Split from #1728.
This PR is based on top of #1808.
Link to tracking Issue: Part of the solution for #1424.
Testing: unit tests.
Documentation: none.
Signed-off-by: Juraci Paixão Kröhling [email protected]