mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-12 08:05:44 +00:00
* stage progress * stage progress (dirty) * feat: native k8s autoscaling integration (EE) Signed-off-by: pyranota <pyra@duck.com> * fix frontend Signed-off-by: pyranota <pyra@duck.com> * update ee ref Signed-off-by: pyranota <pyra@duck.com> * update ee ref Signed-off-by: pyranota <pyra@duck.com> * Update backend/windmill-api/src/configs.rs Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Update ee-repo-ref.txt --------- Signed-off-by: pyranota <pyra@duck.com> Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Co-authored-by: Ruben Fiszel <ruben@windmill.dev>
9 lines
282 B
Rust
9 lines
282 B
Rust
#[cfg(feature = "private")]
|
|
pub mod autoscaling_ee;
|
|
mod autoscaling_oss;
|
|
pub use autoscaling_oss::*;
|
|
#[cfg(feature = "private")]
|
|
pub mod kubernetes_integration_ee;
|
|
#[cfg(feature = "private")]
|
|
pub use kubernetes_integration_ee::{apply_kubernetes_autoscaling, KubernetesIntegration};
|