-
Notifications
You must be signed in to change notification settings - Fork 15
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
feat: Support for envoy gRPC v3 external authorization API #469
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dadrus
changed the title
feat: Support for envoy grpc v3 external authorization API
wip: Support for envoy grpc v3 external authorization API
Jan 31, 2023
Codecov Report
@@ Coverage Diff @@
## main #469 +/- ##
==========================================
+ Coverage 88.50% 88.79% +0.28%
==========================================
Files 194 206 +12
Lines 8038 8665 +627
==========================================
+ Hits 7114 7694 +580
- Misses 755 790 +35
- Partials 169 181 +12
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
…sing both HTTP and GRPC options
dadrus
changed the title
wip: Support for envoy grpc v3 external authorization API
feat: Support for envoy grpc v3 external authorization API
Mar 6, 2023
dadrus
changed the title
feat: Support for envoy grpc v3 external authorization API
feat: Support for envoy gRPC v3 external authorization API
Mar 6, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Related issue(s)
closes #390
Checklist
Description
This PR implements support for Envoy ExtAuth v3 gRPC API and enables integration of heimdall with any Envoy based API Gateway, which support gRPC based integration of external authorization/authentication providers only. The only thing, which is required on heimdall side to have this integration working, is to start heimdall accordingly:
heimdall serve decision --envoy-grpc -c <path to your configuration>
That's all. No additional configuration required. If heimdall is started as shown above it will expose the gRPC service expected by Envoy, instead of the HTTP service, exposed if started without the
--envoy-grpc
flag. See also Quickstarts for working examples.