diff --git a/funqy/knative-events/pom.xml b/funqy/knative-events/pom.xml
index 125e26914..72f5d6fa5 100644
--- a/funqy/knative-events/pom.xml
+++ b/funqy/knative-events/pom.xml
@@ -28,12 +28,8 @@
quarkus-openshift
- io.fabric8
- openshift-client
-
-
- io.fabric8
- knative-client
+ io.quarkus
+ quarkus-openshift-client
io.quarkus.qe
@@ -51,20 +47,4 @@
test
-
-
-
-
- native
-
-
- native
-
-
-
-
- true
-
-
-
diff --git a/funqy/knative-events/src/test/java/io/quarkus/ts/funqy/knativeevents/FunqyKnEventsIT.java b/funqy/knative-events/src/test/java/io/quarkus/ts/funqy/knativeevents/FunqyKnEventsIT.java
index 40e849796..82473bfc5 100644
--- a/funqy/knative-events/src/test/java/io/quarkus/ts/funqy/knativeevents/FunqyKnEventsIT.java
+++ b/funqy/knative-events/src/test/java/io/quarkus/ts/funqy/knativeevents/FunqyKnEventsIT.java
@@ -16,12 +16,10 @@
import io.quarkus.test.bootstrap.RestService;
import io.quarkus.test.scenarios.QuarkusScenario;
-import io.quarkus.test.scenarios.annotations.DisabledOnNative;
import io.quarkus.test.services.QuarkusApplication;
import io.restassured.RestAssured;
@QuarkusScenario
-@DisabledOnNative(reason = "https://github.com/quarkusio/quarkus/issues/43360")
public class FunqyKnEventsIT {
@QuarkusApplication
diff --git a/funqy/knative-events/src/test/java/io/quarkus/ts/funqy/knativeevents/ServerlessExtensionOpenShiftFunqyKnEventsIT.java b/funqy/knative-events/src/test/java/io/quarkus/ts/funqy/knativeevents/ServerlessExtensionOpenShiftFunqyKnEventsIT.java
index dd434cff9..c71566e1b 100644
--- a/funqy/knative-events/src/test/java/io/quarkus/ts/funqy/knativeevents/ServerlessExtensionOpenShiftFunqyKnEventsIT.java
+++ b/funqy/knative-events/src/test/java/io/quarkus/ts/funqy/knativeevents/ServerlessExtensionOpenShiftFunqyKnEventsIT.java
@@ -20,14 +20,12 @@
import io.quarkus.test.scenarios.OpenShiftDeploymentStrategy;
import io.quarkus.test.scenarios.OpenShiftScenario;
-import io.quarkus.test.scenarios.annotations.DisabledOnNative;
import io.quarkus.test.services.QuarkusApplication;
import io.quarkus.test.services.knative.eventing.FunqyKnativeEventsService;
import io.quarkus.test.services.knative.eventing.OpenShiftExtensionFunqyKnativeEventsService;
import io.quarkus.test.services.knative.eventing.spi.ForwardResponseDTO;
import io.restassured.common.mapper.TypeRef;
-@DisabledOnNative(reason = "https://github.com/quarkusio/quarkus/issues/43360")
@Tag("use-quarkus-openshift-extension")
@Tag("serverless")
@OpenShiftScenario(deployment = OpenShiftDeploymentStrategy.UsingOpenShiftExtension)