From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [45.144.208.40]) by lore.proxmox.com (Postfix) with ESMTPS id 7F4BE1FF0AA for ; Fri, 21 Aug 2026 16:05:18 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id F0D0E21736; Fri, 21 Aug 2026 16:04:25 +0200 (CEST) From: Gabriel Goller To: pve-devel@lists.proxmox.com Subject: [PATCH pve-manager 15/15] ui: sdn: expose EVPN zones as fabric VRFs Date: Fri, 21 Aug 2026 16:03:59 +0200 Message-ID: <20260821140404.322081-16-g.goller@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260821140404.322081-1-g.goller@proxmox.com> References: <20260821140404.322081-1-g.goller@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1787321023757 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.719 Adjusted score from AWL reputation of From: address DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: IU65DBOYSVSDTE44RHMNCVLXVZ37O343 X-Message-ID-Hash: IU65DBOYSVSDTE44RHMNCVLXVZ37O343 X-MailFrom: g.goller@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: EVPN zones also create a dedicated VRF and can therefore provide a routing table for a fabric. Include them in the VRF zone selector with simple zones that do not use the default VRF. Signed-off-by: Gabriel Goller --- www/manager6/form/SDNZoneSelector.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/www/manager6/form/SDNZoneSelector.js b/www/manager6/form/SDNZoneSelector.js index 4813539cb62a..e91588e37d18 100644 --- a/www/manager6/form/SDNZoneSelector.js +++ b/www/manager6/form/SDNZoneSelector.js @@ -8,7 +8,7 @@ Ext.define( valueField: 'zone', displayField: 'zone', - // Only show simple zones which create a dedicated VRF. + // Only show zones which create a dedicated VRF. vrfOnly: false, initComponent: function () { @@ -23,7 +23,11 @@ Ext.define( filters: me.vrfOnly ? [ function (record) { - return record.get('type') === 'simple' && !record.get('default-vrf'); + let type = record.get('type'); + return ( + type === 'evpn' || + (type === 'simple' && !record.get('default-vrf')) + ); }, ] : [], -- 2.47.3