feat(wfe-kubernetes): KubernetesStep executor (StepBody impl)

This commit is contained in:
2026-04-06 16:42:09 +01:00
parent 85a83e7580
commit 6a341e426c
2 changed files with 348 additions and 0 deletions

11
wfe-kubernetes/src/lib.rs Normal file
View File

@@ -0,0 +1,11 @@
pub mod cleanup;
pub mod client;
pub mod config;
pub mod logs;
pub mod manifests;
pub mod namespace;
pub mod output;
pub mod step;
pub use config::{ClusterConfig, KubernetesStepConfig};
pub use step::KubernetesStep;