feat: Add Kubernetes module to SAL

- Add Kubernetes cluster management and operations
- Include pod, service, and deployment management
- Implement pattern-based resource deletion
- Support namespace creation and management
- Provide Rhai scripting wrappers for all functions
- Include production safety features (timeouts, retries, rate limiting)
This commit is contained in:
Mahmoud-Emad
2025-06-30 14:56:54 +03:00
parent 717cd7b16f
commit 52f2f7e3c4
27 changed files with 5013 additions and 2 deletions

View File

@@ -37,6 +37,7 @@ pub enum Error {
pub type Result<T> = std::result::Result<T, Error>;
// Re-export modules
pub use sal_git as git;
pub use sal_mycelium as mycelium;
pub use sal_net as net;
pub use sal_os as os;