node: options: add config option for ballooning target

The option is intended for the percentage of host memory that pvestatd
uses as the target for automatic memory allocation (ballooning).

Signed-off-by: Friedrich Weber <f.weber@proxmox.com>
Tested-by: Stoiko Ivanov <s.ivanov@proxmox.com>
Reviewed-by: Stoiko Ivanov <s.ivanov@proxmox.com>
Link: https://lore.kernel.org/r/20250312151506.128311-2-f.weber@proxmox.com
This commit is contained in:
Friedrich Weber 2025-03-12 16:15:03 +01:00 committed by Thomas Lamprecht
parent c8773dced1
commit cca3eaded2

View File

@ -93,6 +93,14 @@ my $confdesc = {
default => 0,
optional => 1,
},
'ballooning-target' => {
description => 'RAM usage target for ballooning (in percent of total memory)',
type => 'integer',
minimum => 0,
maximum => 100,
default => 80,
optional => 1,
},
};
my $wakeonlan_desc = {