From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 7D9301FF138 for ; Wed, 18 Feb 2026 12:06:04 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 10BFA1A7C1; Wed, 18 Feb 2026 12:07:03 +0100 (CET) From: Maximiliano Sandoval To: Daniel Kral Subject: Re: [RFC cluster 1/2] datacenter config: add dynamic load scheduler option In-Reply-To: <20260217141437.584852-13-d.kral@proxmox.com> (Daniel Kral's message of "Tue, 17 Feb 2026 15:14:06 +0100") References: <20260217141437.584852-1-d.kral@proxmox.com> <20260217141437.584852-13-d.kral@proxmox.com> User-Agent: mu4e 1.12.9; emacs 30.1 Date: Wed, 18 Feb 2026 12:06:28 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1771412780408 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.087 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment 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: ZTHNR2JW2ES3OAL2JGJOV4XKDXCC3KYO X-Message-ID-Hash: ZTHNR2JW2ES3OAL2JGJOV4XKDXCC3KYO X-MailFrom: m.sandoval@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 CC: pve-devel@lists.proxmox.com X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Daniel Kral writes: > Signed-off-by: Daniel Kral > --- > src/PVE/DataCenterConfig.pm | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/src/PVE/DataCenterConfig.pm b/src/PVE/DataCenterConfig.pm > index 514c867..5c91f80 100644 > --- a/src/PVE/DataCenterConfig.pm > +++ b/src/PVE/DataCenterConfig.pm > @@ -13,13 +13,14 @@ my $PROXMOX_OUI = 'BC:24:11'; > my $crs_format = { > ha => { > type => 'string', > - enum => ['basic', 'static'], > + enum => ['basic', 'static', 'dynamic'], > optional => 1, > default => 'basic', > description => "Use this resource scheduler mode for HA.", > verbose_description => "Configures how the HA manager should select nodes to start or " > . "recover services. With 'basic', only the number of services is used, with 'static', " > - . "static CPU and memory configuration of services is considered.", > + . "static CPU and memory configuration of services is considered, and with 'dynamic', " > + . "static and dynamic CPU and memory usage of services is considered.", I would personally add a full stop and rephrase a bit e.g.: ...static CPU and memory configuration of services is considered. When set to 'dynamic' static CPU usage, dynamic CPU usage, and memory usage of services is considered. -- Maximiliano