-
Notifications
You must be signed in to change notification settings - Fork 169
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
Add SmallRye Stork service discovery #68
Conversation
Hey @cescoffier / @aureamunoz / @michalszynkiewicz would you mind taking a look through this and make sure everything looks ok (including the updated documentation on the README)? In the |
Wait @cescoffier / @aureamunoz / @michalszynkiewicz is stork supposed to work in native? When I tried to build native image on my machine with these changes I'm getting this:
|
seems if i add <dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
</dependency> to my |
dadd459
to
3978b59
Compare
Bumps `quarkus.platform.version` from 2.8.3.Final to 2.9.0.Final. Updates `quarkus-bom` from 2.8.3.Final to 2.9.0.Final - [Release notes](https://github.com/quarkusio/quarkus-platform/releases) - [Commits](quarkusio/quarkus-platform@2.8.3.Final...2.9.0.Final) Updates `quarkus-maven-plugin` from 2.8.3.Final to 2.9.0.Final --- updated-dependencies: - dependency-name: io.quarkus.platform:quarkus-bom dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.quarkus.platform:quarkus-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Eric Deandrea <[email protected]>
Hi @michalszynkiewicz would you be able to take a quick look at this for me? |
I'm at a conference this week, I'll try. Please ping me on zulip if I won't do it before the weekend |
Oh its fine it can wait until next week! Enjoy the conference! |
Apoligies for the delay @edeandrea, Im in Devoxx UK and I have been working on the talk until now, I'll take a look |
No worries at all @aureamunoz! Go attend the conference and good luck on your talk! This can wait until after. |
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.
Globally LGTM. Is there a reason to not using the quarkus stork extension? And in that case, you should use the corresponding kubernetes client one for take advantage of all native staff around Kubernetes client (look at #24444)
LGTM
Thanks @edeandrea! just did a quick review ;-) |
Thanks @aureamunoz
Isn't this project using it? The guide makes no mention of any Quarkus specific extension. It just mentions the stork libraries. The The calls to
The |
@michalszynkiewicz / @aureamunoz for some reason my PR got all messed up when I tried to rebase |
Ah, this is why I now see 118 modified files? Before I though having only 16 |
Ok, my bad ! yes, the stork extension is used via the |
@michalszynkiewicz / @aureamunoz see #82 for the fixed PR for this. |
Adding SmallRye Stork service discovery for both the hero & villain services.
The
VillainClient
, is implemented by directly using the JAX-RS client API with the RESTEasy Reactive client. Therefore, the Stork API is used directly in order to get the same functionality available in theHeroRestClient
.Fixes #40