baldimir commented on code in PR #4178: URL: https://github.com/apache/incubator-kie-kogito-runtimes/pull/4178#discussion_r2799537150
########## quarkus/addons/kubernetes/test-utils/src/main/java/org/kie/kogito/addons/quarkus/k8s/test/utils/KubernetesMockServerTestResource.java: ########## @@ -22,28 +22,48 @@ import java.util.Map; import io.fabric8.kubernetes.client.Config; -import io.fabric8.kubernetes.client.server.mock.KubernetesServer; +import io.fabric8.kubernetes.client.KubernetesClient; +import io.fabric8.kubernetes.client.server.mock.KubernetesCrudDispatcher; +import io.fabric8.kubernetes.client.server.mock.KubernetesMockServer; +import io.fabric8.mockwebserver.MockWebServer; import io.quarkus.test.common.QuarkusTestResourceLifecycleManager; /** * Quarkus test resource that provides a Fabric8 Kubernetes mock server with CRUD support. + * + * Quarkus 3.27.2 / Fabric8 7.3.1 upgrade: + * - Replaced KubernetesServer (Fabric8 6.x) with KubernetesMockServer (Fabric8 7.x). Review Comment: Same as my previous comments - this description what was done part of the upgrade should be part of the PR, not code. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
