The new checkbox allows users to create a HA resource for the VM right away. The 'state' of the HA resource will match the value of the "Start after creation" checkbox.
Signed-off-by: Michael Köppl <[email protected]> --- www/manager6/qemu/CreateWizard.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/www/manager6/qemu/CreateWizard.js b/www/manager6/qemu/CreateWizard.js index a10b9c0af..bbbdd7639 100644 --- a/www/manager6/qemu/CreateWizard.js +++ b/www/manager6/qemu/CreateWizard.js @@ -96,6 +96,13 @@ Ext.define('PVE.qemu.CreateWizard', { fieldLabel: gettext('Name'), allowBlank: true, }, + { + xtype: 'proxmoxcheckbox', + name: 'ha-managed', + uncheckedValue: 0, + defaultValue: 0, + fieldLabel: gettext('Add as HA resource'), + }, ], column2: [ { -- 2.47.3 _______________________________________________ pve-devel mailing list [email protected] https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
