Open alphamikevictor opened 4 years ago
Have there been any updates on this feature?
Found the solution to my problem in #15144, though I don't know if it addresses this feature.
Adding this to my application.properties fixed my issue
quarkus.arc.test.disable-application-lifecycle-observers=true
Describe the bug Maybe it is not a bug, maybe it is a feature to implement.
So far I am writing a sort of Operator with Quarkus, so when Quarkus starts I am placing code to deal with Kubernetes, while performing tests it is complaining because when trying to get CRDs it receives a 404.
This is an extract of the code:
Expected behavior I was expecting to reach the mockServer set up for the test and return the list of CRDs declared on the mock:
Actual behavior Instead of getting the list of CRDs in the logs I can see this:
In fact in a Dummy REST resource I've written it is able to retrieve the list of CRDs from the mock server and perform the stuff it is supposed to do.
Environment (please complete the following information):
java -version
: java version "1.8.0_211"