mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-10-05 06:41:10 +00:00
config: implement method to calculate derived properties from a config
See the corresponding commit in guest-common for more information. Signed-off-by: Fiona Ebner <f.ebner@proxmox.com> Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
502870a04c
commit
3dd16f4a6c
@ -540,6 +540,22 @@ sub load_current_config {
|
|||||||
return $conf;
|
return $conf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub get_derived_property {
|
||||||
|
my ($class, $conf, $name) = @_;
|
||||||
|
|
||||||
|
my $defaults = PVE::QemuServer::load_defaults();
|
||||||
|
|
||||||
|
if ($name eq 'max-cpu') {
|
||||||
|
my $cpus =
|
||||||
|
($conf->{sockets} || $defaults->{sockets}) * ($conf->{cores} || $defaults->{cores});
|
||||||
|
return $conf->{vcpus} || $cpus;
|
||||||
|
} elsif ($name eq 'max-memory') {
|
||||||
|
return ($conf->{memory} || $defaults->{memory}) * 1024 * 1024;
|
||||||
|
} else {
|
||||||
|
die "unknown derived property - $name\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# END implemented abstract methods from PVE::AbstractConfig
|
# END implemented abstract methods from PVE::AbstractConfig
|
||||||
|
|
||||||
sub has_cloudinit {
|
sub has_cloudinit {
|
||||||
|
Loading…
Reference in New Issue
Block a user