Compare commits

..

1 Commits

Author SHA1 Message Date
142300802d wip: TlsRoute score first version
Some checks failed
Run Check Script / check (pull_request) Failing after 1m11s
2025-12-14 06:19:33 -05:00
2 changed files with 5 additions and 2 deletions

View File

@@ -11,6 +11,7 @@ pub mod k8s;
pub mod lamp; pub mod lamp;
pub mod load_balancer; pub mod load_balancer;
pub mod monitoring; pub mod monitoring;
pub mod network;
pub mod okd; pub mod okd;
pub mod opnsense; pub mod opnsense;
pub mod postgresql; pub mod postgresql;
@@ -18,4 +19,3 @@ pub mod prometheus;
pub mod storage; pub mod storage;
pub mod tenant; pub mod tenant;
pub mod tftp; pub mod tftp;
pub mod network;

View File

@@ -91,6 +91,9 @@ impl<T: Topology + K8sclient + TlsRouter + Send + Sync> Score<T> for TlsRouterSc
} }
fn name(&self) -> String { fn name(&self) -> String {
format!("TlsRouterScore({}:{ }{})", self.backend, self.target_port, self.hostname) format!(
"TlsRouterScore({}:{ }{})",
self.backend, self.target_port, self.hostname
)
} }
} }