Compare commits

..

1 Commits

Author SHA1 Message Date
0e29e9e32d feat(host_network): configure bonds on the host and switch port channels
All checks were successful
Run Check Script / check (pull_request) Successful in 1m6s
2025-10-15 15:53:18 -04:00
2 changed files with 2 additions and 1 deletions

View File

@ -513,7 +513,7 @@ impl Switch for HAClusterTopology {
host: &PhysicalHost,
config: HostNetworkConfig,
) -> Result<(), SwitchError> {
// self.configure_bond(host, &config).await?;
self.configure_bond(host, &config).await?;
self.configure_port_channel(host, &config).await
}
}

View File

@ -50,6 +50,7 @@ impl HostNetworkConfigurationInterpret {
Ok(())
}
async fn collect_switch_ports_for_host<T: Topology + Switch>(
&self,
topology: &T,