all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [pdm-devel] [PATCH proxmox{, -datacenter-manager} 0/8] Integration of IP-VRF and MAC-VRF status to EVPN panel
@ 2025-11-07  8:59 Stefan Hanreich
  2025-11-07  8:59 ` [pdm-devel] [PATCH proxmox 1/3] pve-api-types: add zone / vnet status reporting endpoints Stefan Hanreich
                   ` (7 more replies)
  0 siblings, 8 replies; 10+ messages in thread
From: Stefan Hanreich @ 2025-11-07  8:59 UTC (permalink / raw)
  To: pdm-devel

This patch series requires the API endpoints introduced in the Proxmox VE patch
series [1] - in particular the zone/ip-vrf and the vnet/mac-vrf endpoints.

It adds a second panel to the EVPN view and makes it a split view similar to the
remote view. It utilizes the endpoints to display status information about
selected zones / vnets.

[1] https://lore.proxmox.com/pve-devel/20251107085553.113655-1-s.hanreich@proxmox.com/T/

proxmox:

Stefan Hanreich (3):
  pve-api-types: add zone / vnet status reporting endpoints
  pve-api-types: generate ip-vrf / mac-vrf endpoints
  pve-api-types: regenerate

 pve-api-types/generate.pl            |   4 +
 pve-api-types/pve-api.json           | 286 ++++++++++++++++++++++++++-
 pve-api-types/src/generated/code.rs  |  25 +++
 pve-api-types/src/generated/types.rs | 104 ++++++++--
 4 files changed, 402 insertions(+), 17 deletions(-)


proxmox-datacenter-manager:

Stefan Hanreich (5):
  server: api: sdn: add ip-vrf endpoint
  server: api: sdn: add mac-vrf endpoint
  ui: sdn: evpn: add zone status panel
  ui: sdn: evpn: add vnet status panel
  sdn: evpn: add detail panel to the evpn panel

 lib/pdm-client/src/lib.rs      |  23 +++
 server/src/api/nodes/mod.rs    |   2 +
 server/src/api/nodes/sdn.rs    | 101 +++++++++++++
 server/src/api/pve/node.rs     |   3 +-
 ui/src/sdn/evpn/evpn_panel.rs  | 129 ++++++++++++++--
 ui/src/sdn/evpn/mod.rs         |  36 +++++
 ui/src/sdn/evpn/remote_tree.rs |  71 ++++++---
 ui/src/sdn/evpn/vnet_status.rs | 253 ++++++++++++++++++++++++++++++++
 ui/src/sdn/evpn/vrf_tree.rs    |  29 +++-
 ui/src/sdn/evpn/zone_status.rs | 261 +++++++++++++++++++++++++++++++++
 10 files changed, 874 insertions(+), 34 deletions(-)
 create mode 100644 server/src/api/nodes/sdn.rs
 create mode 100644 ui/src/sdn/evpn/vnet_status.rs
 create mode 100644 ui/src/sdn/evpn/zone_status.rs


Summary over all repositories:
  14 files changed, 1276 insertions(+), 51 deletions(-)

-- 
Generated by git-murpp 0.8.0

_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel


^ permalink raw reply	[flat|nested] 10+ messages in thread
* [pdm-devel] [PATCH proxmox{, -datacenter-manager} 0/4] generate Vec's for string-lists
@ 2025-10-21 13:50 Hannes Laimer
  2025-10-21 13:50 ` [pdm-devel] [PATCH proxmox 3/3] pve-api-types: regenerate Hannes Laimer
  0 siblings, 1 reply; 10+ messages in thread
From: Hannes Laimer @ 2025-10-21 13:50 UTC (permalink / raw)
  To: pdm-devel

PVE does accept actual arrays[1] as input to fields with a `-list` format.
This updates the generator so it produces a Vec if it is a parameter,
not for return values.

I did not find endpoint that directly share the same format for
parameters and return value. Update endpoint also include a
`delete`-field and those were the only ones that had really similar
input and output formats. So deduplication in the generate _should_ not be
a problem here.

This required some small changes to pdm. Context for those is in the
commit itself.

[1] pve-common 69d9edcc ("section config: implement array support")


proxmox:

Hannes Laimer (3):
  pve-api-types: schema2rust: generate arrays for types with format
    `-list`
  pve-api-types: add regex for both storage- and bridge-pair
  pve-api-types: regenerate

 pve-api-types/generate.pl                  |  11 +-
 pve-api-types/generator-lib/Schema2Rust.pm |  35 ++-
 pve-api-types/src/generated/code.rs        |   2 +-
 pve-api-types/src/generated/types.rs       | 335 +++++++++++----------
 pve-api-types/src/types/verifiers.rs       |  10 -
 5 files changed, 213 insertions(+), 180 deletions(-)


proxmox-datacenter-manager:

Hannes Laimer (1):
  server: use types indead of string for migration parameters

 server/src/api/pve/lxc.rs  | 133 ++++++++----------------------------
 server/src/api/pve/qemu.rs | 135 ++++++++-----------------------------
 2 files changed, 56 insertions(+), 212 deletions(-)


Summary over all repositories:
  7 files changed, 269 insertions(+), 392 deletions(-)

-- 
Generated by git-murpp 0.8.1


_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2025-11-07  8:59 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-11-07  8:59 [pdm-devel] [PATCH proxmox{, -datacenter-manager} 0/8] Integration of IP-VRF and MAC-VRF status to EVPN panel Stefan Hanreich
2025-11-07  8:59 ` [pdm-devel] [PATCH proxmox 1/3] pve-api-types: add zone / vnet status reporting endpoints Stefan Hanreich
2025-11-07  8:59 ` [pdm-devel] [PATCH proxmox 2/3] pve-api-types: generate ip-vrf / mac-vrf endpoints Stefan Hanreich
2025-11-07  8:59 ` [pdm-devel] [PATCH proxmox 3/3] pve-api-types: regenerate Stefan Hanreich
2025-11-07  8:59 ` [pdm-devel] [PATCH proxmox-datacenter-manager 1/5] server: api: sdn: add ip-vrf endpoint Stefan Hanreich
2025-11-07  8:59 ` [pdm-devel] [PATCH proxmox-datacenter-manager 2/5] server: api: sdn: add mac-vrf endpoint Stefan Hanreich
2025-11-07  8:59 ` [pdm-devel] [PATCH proxmox-datacenter-manager 3/5] ui: sdn: evpn: add zone status panel Stefan Hanreich
2025-11-07  8:59 ` [pdm-devel] [PATCH proxmox-datacenter-manager 4/5] ui: sdn: evpn: add vnet " Stefan Hanreich
2025-11-07  8:59 ` [pdm-devel] [PATCH proxmox-datacenter-manager 5/5] sdn: evpn: add detail panel to the evpn panel Stefan Hanreich
  -- strict thread matches above, loose matches on Subject: below --
2025-10-21 13:50 [pdm-devel] [PATCH proxmox{, -datacenter-manager} 0/4] generate Vec's for string-lists Hannes Laimer
2025-10-21 13:50 ` [pdm-devel] [PATCH proxmox 3/3] pve-api-types: regenerate Hannes Laimer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal