test: fix integration jobs
diff --git a/atmosphere/tests/integration/test_deploy.py b/atmosphere/tests/integration/test_deploy.py
index dc2d45e..41ee1c3 100644
--- a/atmosphere/tests/integration/test_deploy.py
+++ b/atmosphere/tests/integration/test_deploy.py
@@ -13,6 +13,9 @@
     mocker.patch("atmosphere.clients.get_pykube_api", return_value=flux_cluster.api)
 
     flux_cluster.kubectl("create", "namespace", "openstack")
+    flux_cluster.kubectl(
+        "label", "node", "pytest-kind-control-plane", "openstack-control-plane=enabled"
+    )
 
     engine = flows.get_engine()
     engine.run()
diff --git a/pyproject.toml b/pyproject.toml
index 43fef11..3ed2ad9 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -46,6 +46,7 @@
   "--cov-report=term-missing",
 ]
 filterwarnings = [
+  "ignore::DeprecationWarning",
   "ignore::schematics.deprecated.SchematicsDeprecationWarning",
   "ignore:The asyncore module is deprecated",
 ]