halldyll_deploy_pods 0.1.0

Declarative, idempotent, and reconcilable deployment system for RunPod GPU pods
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Planning module for deployment operations.
//!
//! This module handles the comparison between desired and observed states,
//! generating execution plans for applying changes.

mod diff;
mod plan;
mod executor;

pub use diff::{DiffEngine, ResourceDiff, DiffType};
pub use plan::{DeploymentPlan, PlannedAction, ActionType};
pub use executor::PlanExecutor;