Sébastien Crocquesel
Sébastien Crocquesel
This concept has been around in Microsoft ecosystem, as far a i can remember, in IIS5 since early 2000. IIS has a concept of virtual path to mount multiple applications...
We have similar needs. We have use cases where we want to add some metadata as cross-cutting concerns (correlationId, authenticated principal name, ...).
For me, to keep maintenance low, it should be the same sample as from JOSDK. But, there isn't much work to do to port reconciler code to quarkus. What's more...
Do you need both Local and Remote support ? Remote would require the image to be built but I'm not sure quarkus do it before running the tests. Like the...
This is usually configured by env var but in some old versions setting a env var named `quarkus.operator-sdk.controllers..namespaces` didn't work. What we did was to add in `application.properties` a mapping...
Hi, I quickly set up a test https://github.com/scrocquesel/quarkus-operator-sdk/commit/6a4ca1a12e657f7fd449e792a2e210f8d6e6a6eb @metacosm do you want me to make a PR ?
@metacosm do you think it could be possible to only have the reconciler as SUT and unit test the reconcile call ? Doing integration test with external services could be...
Yes, the code i wrote works but the main is run. I understand that `@QuarkusTest` launch the app aside, but if we remove it, we lose all CDI behavior, Mockito...
Testing with PerResourcePollingEventSource for eg could be very difficult and we can't afford having unit tests waiting for time based event to occured. In this case, we can set up...
> Yes, but you can already call `reconcile` directly, no? > > The only thing would be that we need to provide a `TestContext` instead of relying on `DefaultContext` (which...