]> git.proxmox.com Git - pve-manager.git/commitdiff
lxc: increase limit of max cores from 128 to 8192
authorOguz Bektas <o.bektas@proxmox.com>
Tue, 15 Sep 2020 09:16:54 +0000 (11:16 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 15 Sep 2020 09:24:26 +0000 (11:24 +0200)
to match the recently change in the container backend

Signed-off-by: Oguz Bektas <o.bektas@proxmox.com>
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
www/manager6/lxc/ResourceEdit.js

index 476a9a28432fd189a5d0ba79c392cbaf59014ee8..dbc75f999542d64015989502b2884abee705e80d 100644 (file)
@@ -88,7 +88,7 @@ Ext.define('PVE.lxc.CPUInputPanel', {
                xtype: 'proxmoxintegerfield',
                name: 'cores',
                minValue: 1,
-               maxValue: 128,
+               maxValue: 8192,
                value: me.insideWizard ? 1 : '',
                fieldLabel: gettext('Cores'),
                allowBlank: true,