fix bug #174: add cpuunits to KVM options
This commit is contained in:
2
debian/changelog.Debian
vendored
2
debian/changelog.Debian
vendored
@ -4,6 +4,8 @@ pve-manager (2.0-64) unstable; urgency=low
|
|||||||
warning icon for such actions
|
warning icon for such actions
|
||||||
|
|
||||||
* fix bug #177: allow memory up to 512GB
|
* fix bug #177: allow memory up to 512GB
|
||||||
|
|
||||||
|
* fix bug #174: add cpuunits to KVM options
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Tue, 24 Apr 2012 08:09:23 +0200
|
-- Proxmox Support Team <support@proxmox.com> Tue, 24 Apr 2012 08:09:23 +0200
|
||||||
|
|
||||||
|
@ -139,6 +139,23 @@ Ext.define('PVE.qemu.Options', {
|
|||||||
}
|
}
|
||||||
} : undefined
|
} : undefined
|
||||||
},
|
},
|
||||||
|
cpuunits: {
|
||||||
|
header: 'CPU units',
|
||||||
|
defaultValue: '1000',
|
||||||
|
editor: caps.vms['VM.Config.CPU'] ? {
|
||||||
|
xtype: 'pveWindowEdit',
|
||||||
|
subject: 'CPU units',
|
||||||
|
items: {
|
||||||
|
xtype: 'numberfield',
|
||||||
|
name: 'cpuunits',
|
||||||
|
fieldLabel: 'CPU units',
|
||||||
|
minValue: 8,
|
||||||
|
maxValue: 500000,
|
||||||
|
defaultValue: 1000,
|
||||||
|
allowBlank: false
|
||||||
|
}
|
||||||
|
} : undefined
|
||||||
|
},
|
||||||
freeze: {
|
freeze: {
|
||||||
header: 'Freeze CPU at startup',
|
header: 'Freeze CPU at startup',
|
||||||
defaultValue: false,
|
defaultValue: false,
|
||||||
|
Reference in New Issue
Block a user