haraldott
haraldott
Even though this might appear to be related to https://github.com/ben-manes/gradle-versions-plugin/issues/97, it's not. because the dependencyManagement section is being ignored completely. What could be the reason for this?
I have obtained this from a colleague, who has done a complete pipeline for this. I'll get back to you once I have it, and will include a link to...
With basic-auth, this seems to be working even with quite big amounts of groups/patterns. We seem to be having trouble with the bearer token when trying to login through SSO...
Weird... adding `authentication: bearer` there will just result in a blank landing page of akhq with just the logo, but without the username and password field. No errors in the...
This is the complete stacktrace. It doesn't even tell me which call from my code exactly causes it, but it's obviously some call to the k8s client library (`client.resources(KafkaUser.class).inNamespace(this.KAFKA_NAMESPACE).load(yamlFile) .create()`),...
I've had some calls of the client inside try {} blocks: I've transformed this: ``` try (final InputStream yamlFile = this.getClass().getResourceAsStream(resourcePath)) { assertNotNull(yamlFile, "File not found: " + resourcePath); this.client.resources(KafkaUser.class).inNamespace(this.KAFKA_NAMESPACE).load(yamlFile)...
``` @Component public class KubernetesClientFactoryImp { public KubernetesClient getKubernetesClient() { return new KubernetesClientBuilder().build(); } } // ----------------------- @Autowired private KubernetesClientFactoryImp kubernetesClientFactory; this.client = this.kubernetesClientFactory.getKubernetesClient(); ``` `.close()` is never called
The only orchestration of the tests are the `@Test` and `@Order(1) ... @Order(n)` from `org.junit.jupiter.api` and `@SpringBootTest`. The Exception itself is the testfailure, nothing else is executed after it. The...
Now it happened again for the first test (the one that I've posted here already), no other tests are executed before it. I think that only the last part of...
Hi, so I finally had time to look into this issue again. > We also see one client being closed, while another one is being created - is that expected?...