all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [pve-devel] [PATCH manager v2 0/3] add option to add guest as HA resource
@ 2025-10-07 12:41 Michael Köppl
  2025-10-07 12:41 ` [pve-devel] [PATCH manager v2 1/3] qemu: create: add checkbox for creating HA resource upon VM creation Michael Köppl
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Michael Köppl @ 2025-10-07 12:41 UTC (permalink / raw)
  To: pve-devel

This patch series adds checkboxes to the CreateWizard and Restore
dialogs that allow users to add a new or restored guest as a HA resource
right away. This is an adapted version of the pve-manager patches in v1
[0].

Changes since v1:
- remove patches that were already applied
- move checkboxes in the CreateWizard dialogs to the General section (as
  a result, the value of ha-managed will also be shown in the summary)

[0] https://lore.proxmox.com/pve-devel/20251006155233.267374-1-m.koeppl@proxmox.com/

pve-manager:

Michael Köppl (3):
  qemu: create: add checkbox for creating HA resource upon VM creation
  lxc: create: add checkbox for creating HA resource upon CT creation
  ui: restore: add checkbox for adding HA resource upon restore of guest

 www/manager6/lxc/CreateWizard.js  |  7 +++++++
 www/manager6/qemu/CreateWizard.js |  7 +++++++
 www/manager6/window/Restore.js    | 12 ++++++++++++
 3 files changed, 26 insertions(+)


Summary over all repositories:
  3 files changed, 26 insertions(+), 0 deletions(-)

-- 
Generated by git-murpp 0.8.0


_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [pve-devel] [PATCH manager v2 1/3] qemu: create: add checkbox for creating HA resource upon VM creation
  2025-10-07 12:41 [pve-devel] [PATCH manager v2 0/3] add option to add guest as HA resource Michael Köppl
@ 2025-10-07 12:41 ` Michael Köppl
  2025-10-07 12:41 ` [pve-devel] [PATCH manager v2 2/3] lxc: create: add checkbox for creating HA resource upon CT creation Michael Köppl
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Michael Köppl @ 2025-10-07 12:41 UTC (permalink / raw)
  To: pve-devel

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 <m.koeppl@proxmox.com>
---
 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
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [pve-devel] [PATCH manager v2 2/3] lxc: create: add checkbox for creating HA resource upon CT creation
  2025-10-07 12:41 [pve-devel] [PATCH manager v2 0/3] add option to add guest as HA resource Michael Köppl
  2025-10-07 12:41 ` [pve-devel] [PATCH manager v2 1/3] qemu: create: add checkbox for creating HA resource upon VM creation Michael Köppl
@ 2025-10-07 12:41 ` Michael Köppl
  2025-10-07 12:41 ` [pve-devel] [PATCH manager v2 3/3] ui: restore: add checkbox for adding HA resource upon restore of guest Michael Köppl
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Michael Köppl @ 2025-10-07 12:41 UTC (permalink / raw)
  To: pve-devel

The new checkbox allows users to create a HA resource for the CT right
away. The 'state' of the HA resource will match the value of the "Start
after creation" checkbox.

Signed-off-by: Michael Köppl <m.koeppl@proxmox.com>
---
 www/manager6/lxc/CreateWizard.js | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/www/manager6/lxc/CreateWizard.js b/www/manager6/lxc/CreateWizard.js
index 0f6fcce8d..475779e6b 100644
--- a/www/manager6/lxc/CreateWizard.js
+++ b/www/manager6/lxc/CreateWizard.js
@@ -82,6 +82,13 @@ Ext.define('PVE.lxc.CreateWizard', {
                     },
                     fieldLabel: gettext('Nesting'),
                 },
+                {
+                    xtype: 'proxmoxcheckbox',
+                    name: 'ha-managed',
+                    uncheckedValue: 0,
+                    defaultValue: 0,
+                    fieldLabel: gettext('Add as HA resource'),
+                },
             ],
             column2: [
                 {
-- 
2.47.3



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [pve-devel] [PATCH manager v2 3/3] ui: restore: add checkbox for adding HA resource upon restore of guest
  2025-10-07 12:41 [pve-devel] [PATCH manager v2 0/3] add option to add guest as HA resource Michael Köppl
  2025-10-07 12:41 ` [pve-devel] [PATCH manager v2 1/3] qemu: create: add checkbox for creating HA resource upon VM creation Michael Köppl
  2025-10-07 12:41 ` [pve-devel] [PATCH manager v2 2/3] lxc: create: add checkbox for creating HA resource upon CT creation Michael Köppl
@ 2025-10-07 12:41 ` Michael Köppl
  2025-11-03 18:10 ` [pve-devel] [PATCH manager v2 0/3] add option to add guest as HA resource Michael Köppl
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Michael Köppl @ 2025-10-07 12:41 UTC (permalink / raw)
  To: pve-devel

Matching the checkbox in the CreateWizard dialogs for VMs and CTs, add
the option to create a HA resource when restoring a guest.

Signed-off-by: Michael Köppl <m.koeppl@proxmox.com>
---
 www/manager6/window/Restore.js | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/www/manager6/window/Restore.js b/www/manager6/window/Restore.js
index 690116df6..e3155f52d 100644
--- a/www/manager6/window/Restore.js
+++ b/www/manager6/window/Restore.js
@@ -41,6 +41,9 @@ Ext.define('PVE.window.Restore', {
             if (values.start && !values['live-restore']) {
                 params.start = 1;
             }
+            if (values['ha-managed']) {
+                params['ha-managed'] = 1;
+            }
             if (values['live-restore']) {
                 params['live-restore'] = 1;
             }
@@ -240,6 +243,15 @@ Ext.define('PVE.window.Restore', {
                         labelWidth: 105,
                         checked: false,
                     },
+                    {
+                        xtype: 'proxmoxcheckbox',
+                        name: 'ha-managed',
+                        reference: 'ha-managed',
+                        flex: 1,
+                        fieldLabel: gettext('Add as HA resource'),
+                        labelWidth: 120,
+                        checked: false,
+                    },
                 ],
             },
         ];
-- 
2.47.3



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [pve-devel] [PATCH manager v2 0/3] add option to add guest as HA resource
  2025-10-07 12:41 [pve-devel] [PATCH manager v2 0/3] add option to add guest as HA resource Michael Köppl
                   ` (2 preceding siblings ...)
  2025-10-07 12:41 ` [pve-devel] [PATCH manager v2 3/3] ui: restore: add checkbox for adding HA resource upon restore of guest Michael Köppl
@ 2025-11-03 18:10 ` Michael Köppl
  2025-11-10 14:39 ` Daniel Kral
  2025-11-14 21:02 ` [pve-devel] applied: " Thomas Lamprecht
  5 siblings, 0 replies; 8+ messages in thread
From: Michael Köppl @ 2025-11-03 18:10 UTC (permalink / raw)
  To: Proxmox VE development discussion; +Cc: pve-devel

Ping, still applies

On Tue Oct 7, 2025 at 2:41 PM CEST, Michael Köppl wrote:
> This patch series adds checkboxes to the CreateWizard and Restore
> dialogs that allow users to add a new or restored guest as a HA resource
> right away. This is an adapted version of the pve-manager patches in v1
> [0].
>
> Changes since v1:
> - remove patches that were already applied
> - move checkboxes in the CreateWizard dialogs to the General section (as
>   a result, the value of ha-managed will also be shown in the summary)
>
> [0] https://lore.proxmox.com/pve-devel/20251006155233.267374-1-m.koeppl@proxmox.com/
>
> pve-manager:
>
> Michael Köppl (3):
>   qemu: create: add checkbox for creating HA resource upon VM creation
>   lxc: create: add checkbox for creating HA resource upon CT creation
>   ui: restore: add checkbox for adding HA resource upon restore of guest
>
>  www/manager6/lxc/CreateWizard.js  |  7 +++++++
>  www/manager6/qemu/CreateWizard.js |  7 +++++++
>  www/manager6/window/Restore.js    | 12 ++++++++++++
>  3 files changed, 26 insertions(+)
>
>
> Summary over all repositories:
>   3 files changed, 26 insertions(+), 0 deletions(-)



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [pve-devel] [PATCH manager v2 0/3] add option to add guest as HA resource
  2025-10-07 12:41 [pve-devel] [PATCH manager v2 0/3] add option to add guest as HA resource Michael Köppl
                   ` (3 preceding siblings ...)
  2025-11-03 18:10 ` [pve-devel] [PATCH manager v2 0/3] add option to add guest as HA resource Michael Köppl
@ 2025-11-10 14:39 ` Daniel Kral
  2025-11-10 15:48   ` Jillian Morgan
  2025-11-14 21:02 ` [pve-devel] applied: " Thomas Lamprecht
  5 siblings, 1 reply; 8+ messages in thread
From: Daniel Kral @ 2025-11-10 14:39 UTC (permalink / raw)
  To: Proxmox VE development discussion

On Tue Oct 7, 2025 at 2:41 PM CEST, Michael Köppl wrote:
> This patch series adds checkboxes to the CreateWizard and Restore
> dialogs that allow users to add a new or restored guest as a HA resource
> right away. This is an adapted version of the pve-manager patches in v1
> [0].
>
> Changes since v1:
> - remove patches that were already applied
> - move checkboxes in the CreateWizard dialogs to the General section (as
>   a result, the value of ha-managed will also be shown in the summary)

The text for the VM / LXC create wizards could be a little shorter (e.g.
"Manage with HA") as it's two lines there, but no hard feelings.

Else this works just as expected for all combinations of start={0,1} and
ha-managed={0,1} as well as live restore from pbs and a normal restore
from a vma archive.

Either way, consider this as:

Reviewed-by: Daniel Kral <d.kral@proxmox.com>
Tested-by: Daniel Kral <d.kral@proxmox.com>


_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [pve-devel] [PATCH manager v2 0/3] add option to add guest as HA resource
  2025-11-10 14:39 ` Daniel Kral
@ 2025-11-10 15:48   ` Jillian Morgan
  0 siblings, 0 replies; 8+ messages in thread
From: Jillian Morgan @ 2025-11-10 15:48 UTC (permalink / raw)
  To: Proxmox VE development discussion

Sorry to chime in late here, but any chance there could be a global
configuration option to set the default value for this checkbox? I would
love it if I could make all new VMs be HA by default without having to
remember to go fix it later.

-- 
Jillian Morgan (she/her)
Systems & Networking Specialist
Primordial Software Group & I.T. Consultancy
https://www.primordial.ca


On Mon, Nov 10, 2025 at 9:40 AM Daniel Kral <d.kral@proxmox.com> wrote:

> On Tue Oct 7, 2025 at 2:41 PM CEST, Michael Köppl wrote:
> > This patch series adds checkboxes to the CreateWizard and Restore
> > dialogs that allow users to add a new or restored guest as a HA resource
> > right away. This is an adapted version of the pve-manager patches in v1
> > [0].
> >
> > Changes since v1:
> > - remove patches that were already applied
> > - move checkboxes in the CreateWizard dialogs to the General section (as
> >   a result, the value of ha-managed will also be shown in the summary)
>
> The text for the VM / LXC create wizards could be a little shorter (e.g.
> "Manage with HA") as it's two lines there, but no hard feelings.
>
> Else this works just as expected for all combinations of start={0,1} and
> ha-managed={0,1} as well as live restore from pbs and a normal restore
> from a vma archive.
>
> Either way, consider this as:
>
> Reviewed-by: Daniel Kral <d.kral@proxmox.com>
> Tested-by: Daniel Kral <d.kral@proxmox.com>
>
>
> _______________________________________________
> pve-devel mailing list
> pve-devel@lists.proxmox.com
> https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
>
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [pve-devel] applied: [PATCH manager v2 0/3] add option to add guest as HA resource
  2025-10-07 12:41 [pve-devel] [PATCH manager v2 0/3] add option to add guest as HA resource Michael Köppl
                   ` (4 preceding siblings ...)
  2025-11-10 14:39 ` Daniel Kral
@ 2025-11-14 21:02 ` Thomas Lamprecht
  5 siblings, 0 replies; 8+ messages in thread
From: Thomas Lamprecht @ 2025-11-14 21:02 UTC (permalink / raw)
  To: pve-devel, Michael Köppl

On Tue, 07 Oct 2025 14:41:28 +0200, Michael Köppl wrote:
> This patch series adds checkboxes to the CreateWizard and Restore
> dialogs that allow users to add a new or restored guest as a HA resource
> right away. This is an adapted version of the pve-manager patches in v1
> [0].
> 
> Changes since v1:
> - remove patches that were already applied
> - move checkboxes in the CreateWizard dialogs to the General section (as
>   a result, the value of ha-managed will also be shown in the summary)
> 
> [...]

Applied, thanks!

[1/3] qemu: create: add checkbox for creating HA resource upon VM creation
      commit: 3febfdd42bd4b8f7b0e0863c928ac367b89aa782
[2/3] lxc: create: add checkbox for creating HA resource upon CT creation
      commit: 03f66c4679ad6c92cb81727e8f858bbaaf27ab7b
[3/3] ui: restore: add checkbox for adding HA resource upon restore of guest
      commit: e065e8672a8dcbfa57af3bf8b412f64e05371f65


_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2025-11-14 21:03 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-10-07 12:41 [pve-devel] [PATCH manager v2 0/3] add option to add guest as HA resource Michael Köppl
2025-10-07 12:41 ` [pve-devel] [PATCH manager v2 1/3] qemu: create: add checkbox for creating HA resource upon VM creation Michael Köppl
2025-10-07 12:41 ` [pve-devel] [PATCH manager v2 2/3] lxc: create: add checkbox for creating HA resource upon CT creation Michael Köppl
2025-10-07 12:41 ` [pve-devel] [PATCH manager v2 3/3] ui: restore: add checkbox for adding HA resource upon restore of guest Michael Köppl
2025-11-03 18:10 ` [pve-devel] [PATCH manager v2 0/3] add option to add guest as HA resource Michael Köppl
2025-11-10 14:39 ` Daniel Kral
2025-11-10 15:48   ` Jillian Morgan
2025-11-14 21:02 ` [pve-devel] applied: " Thomas Lamprecht

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal