Compare commits

..

1 Commits

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

View File

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

View File

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