[pdm-devel] [PATCH datacenter-manager v2 11/11] ui: dashboard: expose PBS nodes status panel
Christian Ebner
c.ebner at proxmox.com
Fri Oct 17 16:11:37 CEST 2025
Analogous to the node status information shown for PVE nodes, allows
to get a fast overview if all PBS remotes/nodes are reachable or not.
Signed-off-by: Christian Ebner <c.ebner at proxmox.com>
---
changes since version 1:
- adapt to new refactored code
ui/src/dashboard/mod.rs | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/ui/src/dashboard/mod.rs b/ui/src/dashboard/mod.rs
index d90d56c..d3da03d 100644
--- a/ui/src/dashboard/mod.rs
+++ b/ui/src/dashboard/mod.rs
@@ -515,12 +515,12 @@ impl Component for PdmDashboard {
))
.with_child(self.create_guest_panel(GuestType::Qemu))
.with_child(self.create_guest_panel(GuestType::Lxc))
- // FIXME: add PBS support
- //.with_child(self.create_node_panel(
- // "building-o",
- // tr!("Backup Server Nodes"),
- // &self.status.pbs_nodes,
- //))
+ .with_child(self.create_node_panel(
+ "building-o",
+ tr!("Backup Server Nodes"),
+ RemoteType::Pbs,
+ ))
+ // FIXME: add further PBS support
//.with_child(
// Panel::new()
// .flex(1.0)
--
2.47.3
More information about the pdm-devel
mailing list