From 11e860911bbecab4bd8ad82a10f985cbd4704ec9 Mon Sep 17 00:00:00 2001 From: andrussal Date: Wed, 10 Dec 2025 15:46:25 +0100 Subject: [PATCH] Extract k8s deployer orchestrator module --- testing-framework/runners/k8s/src/deployer/mod.rs | 3 +++ .../runners/k8s/src/{deployer.rs => deployer/orchestrator.rs} | 0 2 files changed, 3 insertions(+) create mode 100644 testing-framework/runners/k8s/src/deployer/mod.rs rename testing-framework/runners/k8s/src/{deployer.rs => deployer/orchestrator.rs} (100%) diff --git a/testing-framework/runners/k8s/src/deployer/mod.rs b/testing-framework/runners/k8s/src/deployer/mod.rs new file mode 100644 index 0000000..e42a6da --- /dev/null +++ b/testing-framework/runners/k8s/src/deployer/mod.rs @@ -0,0 +1,3 @@ +mod orchestrator; + +pub use orchestrator::{K8sDeployer, K8sRunnerError}; diff --git a/testing-framework/runners/k8s/src/deployer.rs b/testing-framework/runners/k8s/src/deployer/orchestrator.rs similarity index 100% rename from testing-framework/runners/k8s/src/deployer.rs rename to testing-framework/runners/k8s/src/deployer/orchestrator.rs