Add mTLS examples ported from akka-grpc PR #1781#691
Open
pjfanning wants to merge 7 commits intoapache:mainfrom
Open
Add mTLS examples ported from akka-grpc PR #1781#691pjfanning wants to merge 7 commits intoapache:mainfrom
pjfanning wants to merge 7 commits intoapache:mainfrom
Conversation
… docs) Agent-Logs-Url: https://github.com/pjfanning/incubator-pekko-grpc/sessions/8fc8ebec-eb62-4f02-bba7-5e964c412085 Co-authored-by: pjfanning <11783444+pjfanning@users.noreply.github.com>
…e/spelling corrections Agent-Logs-Url: https://github.com/pjfanning/incubator-pekko-grpc/sessions/8fc8ebec-eb62-4f02-bba7-5e964c412085 Co-authored-by: pjfanning <11783444+pjfanning@users.noreply.github.com>
This file contains hidden or 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
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.
The changes in https://github.com/akka/akka-grpc/releases/tag/v2.3.2 are now available under the Apache license.
Ports the mTLS (mutual TLS) support from akka-grpc#1781, replacing all
akkareferences withpekko. Usespekko-pki'sDERPrivateKeyLoader/PEMDecoder.New files
docs/src/main/paradox/mtls.md— mTLS documentation; wired into indexplugin-tester-java/—MtlsGreeterServer.java,MtlsGreeterClient.java, cert files undersrc/main/resources/certs/plugin-tester-scala/—MtlsGreeterServer.scala,MtlsGreeterClient.scala,MtlsIntegrationSpec.scala, cert files,logback.xmlBuild changes
build.sbt: addspekko-pkito both plugin testers; addspekko-actor-testkit-typed(test) to Scala testerproject/Dependencies.scala: addsRuntime.logbacktopluginTesterplugin-tester-java/application.conf: addspekko.http.server.enable-http2 = onSSL context construction (both Java and Scala)
Server loads its own keypair and trusts any client cert signed by the configured CA:
Client presents its keypair and trusts the server cert via the same CA: