k8s-maestro 1.0.0

A Kubernetes job orchestrator tool library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod builder;
pub mod checkpointing;
pub mod dependency;
pub mod workflow;

pub use builder::WorkflowBuilder;
pub use checkpointing::{
    config, models, plugin, statefulset, store, CheckpointConfig, CheckpointFrequency,
    CheckpointMetadata, CheckpointStorage, CheckpointStorageConfig, CheckpointStore,
    RetentionPolicy, SQLiteCheckpointStorage, StepCheckpoint, StorageError,
};
pub use dependency::{
    ConditionBuilder, ConditionFn, DependencyChain, DependencyGraph, DependencyInfo, StepId,
};
pub use workflow::{ExecutionMode, LegacyCheckpointConfig, Workflow, WorkflowMetadata};