wip: Started work on k3d crate

This commit is contained in:
2025-04-17 13:04:06 -04:00
parent 3f6f1fa0d4
commit 847d84b46f
7 changed files with 262 additions and 11 deletions

View File

@@ -5,7 +5,7 @@ use log::{info, warn};
use tokio::sync::OnceCell;
use crate::{
interpret::{InterpretError, Outcome}, inventory::Inventory, maestro::Maestro, topology::LocalhostTopology
interpret::{InterpretError, Outcome}, inventory::Inventory, maestro::Maestro, modules::k3d::K3DInstallationScore, topology::LocalhostTopology
};
use super::{Topology, k8s::K8sClient};

View File

@@ -1,3 +1,3 @@
mod install;
pub use install::*;

View File

@@ -8,4 +8,4 @@ pub mod load_balancer;
pub mod okd;
pub mod opnsense;
pub mod tftp;
mod k3d;
pub mod k3d;