- Add proxmox module with client, cluster, and resource management - Implement VM management stubs with full API documentation - Add database migrations for proxmox_clusters and proxmox_resources tables - Implement IPC commands for cluster CRUD operations - Add Proxmox state management to AppState - Create 22 unit tests for Proxmox modules (all passing) - Update lib.rs, state.rs, and integrations.rs for Proxmox integration
19 lines
381 B
Rust
19 lines
381 B
Rust
// Proxmox integration module
|
|
// Provides management for Proxmox VE and Proxmox Backup Server clusters
|
|
|
|
pub mod backup;
|
|
pub mod ceph;
|
|
pub mod client;
|
|
pub mod cluster;
|
|
pub mod firewall;
|
|
pub mod ha;
|
|
pub mod metrics;
|
|
pub mod node;
|
|
pub mod sdn;
|
|
pub mod storage;
|
|
pub mod updates;
|
|
pub mod vm;
|
|
|
|
pub use client::ProxmoxClient;
|
|
pub use cluster::{ClusterInfo, ClusterRegistry, ClusterType};
|