From: Dominik Csapak <d.csapak@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [PATCH manager v2 06/17] ui: qemu: add architecture field in wizard and hardware view
Date: Tue, 3 Feb 2026 11:00:11 +0100 [thread overview]
Message-ID: <20260203102118.1430545-7-d.csapak@proxmox.com> (raw)
In-Reply-To: <20260203102118.1430545-1-d.csapak@proxmox.com>
adds a new architecture field to the wizard to select the target
architecture for the virtual machine. When the selected architecture
does not match the host architecture of the selected node, disable kvm.
Also show the architecture in the hardware view when it does not match
the host architecture (and add it automatically to the editors so we can
access it there).
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
www/manager6/qemu/CreateWizard.js | 51 +++++++++++++++++++++++++++++++
www/manager6/qemu/HardwareView.js | 10 ++++++
2 files changed, 61 insertions(+)
diff --git a/www/manager6/qemu/CreateWizard.js b/www/manager6/qemu/CreateWizard.js
index 3928d7ff..14cb2c43 100644
--- a/www/manager6/qemu/CreateWizard.js
+++ b/www/manager6/qemu/CreateWizard.js
@@ -8,6 +8,7 @@ Ext.define('PVE.qemu.CreateWizard', {
nodename: '',
current: {
scsihw: '',
+ architecture: '',
},
},
formulas: {
@@ -60,6 +61,25 @@ Ext.define('PVE.qemu.CreateWizard', {
return undefined;
},
+ setArchitecture: function () {
+ let me = this;
+ let vm = me.getViewModel();
+
+ let nodename = me.lookup('nodenameSelector').getValue();
+ if (!nodename) {
+ // we can't set an architecture if we don't have a nodename
+ return;
+ }
+ let arch = me.lookup('archSelector').getValue();
+ if (arch === '__default__') {
+ arch = undefined;
+ }
+ arch = PVE.qemu.Architecture.getNodeArchitecture(arch, nodename);
+ vm.set('current.architecture', arch);
+ },
+
+ referenceHolder: true,
+
items: [
{
xtype: 'inputpanel',
@@ -69,6 +89,7 @@ Ext.define('PVE.qemu.CreateWizard', {
{
xtype: 'pveNodeSelector',
name: 'nodename',
+ reference: 'nodenameSelector',
cbind: {
selectCurNode: '{!nodename}',
preferredValue: '{nodename}',
@@ -79,6 +100,11 @@ Ext.define('PVE.qemu.CreateWizard', {
fieldLabel: gettext('Node'),
allowBlank: false,
onlineValidator: true,
+ listeners: {
+ change: function () {
+ this.up('window').setArchitecture();
+ },
+ },
},
{
xtype: 'pveGuestIDSelector',
@@ -151,6 +177,20 @@ Ext.define('PVE.qemu.CreateWizard', {
],
advancedColumnB: [
+ {
+ xtype: 'proxmoxKVComboBox',
+ name: 'arch',
+ value: '__default__',
+ reference: 'archSelector',
+ fieldLabel: gettext('vCPU Architecture'),
+ labelWidth: 120,
+ comboItems: PVE.qemu.Architecture.selection,
+ listeners: {
+ change: function () {
+ this.up('window').setArchitecture();
+ },
+ },
+ },
{
xtype: 'pveTagFieldSet',
name: 'tags',
@@ -258,6 +298,13 @@ Ext.define('PVE.qemu.CreateWizard', {
kv.boot = boot;
}
+ if (
+ kv.arch &&
+ !PVE.qemu.Architecture.isHostArchitecture(kv.arch, kv.nodename)
+ ) {
+ kv.kvm = 0;
+ }
+
Ext.Object.each(kv, function (key, value) {
if (key === 'delete') {
// ignore
@@ -288,6 +335,10 @@ Ext.define('PVE.qemu.CreateWizard', {
kv.boot = boot;
}
+ if (kv.arch && !PVE.qemu.Architecture.isHostArchitecture(kv.arch, nodename)) {
+ kv.kvm = 0;
+ }
+
Proxmox.Utils.API2Request({
url: '/nodes/' + nodename + '/qemu',
waitMsgTarget: wizard,
diff --git a/www/manager6/qemu/HardwareView.js b/www/manager6/qemu/HardwareView.js
index cf5e2a0f..541a41cb 100644
--- a/www/manager6/qemu/HardwareView.js
+++ b/www/manager6/qemu/HardwareView.js
@@ -66,6 +66,12 @@ Ext.define('PVE.qemu.HardwareView', {
};
let rows = {
+ arch: {
+ header: gettext('vCPU Architecture'),
+ tdCls: 'pve-itype-icon-cpu',
+ never_delete: true,
+ renderer: PVE.qemu.Architecture.render_vcpu_architecture,
+ },
memory: {
header: gettext('Memory'),
editor: caps.vms['VM.Config.Memory'] ? 'PVE.qemu.MemoryEdit' : undefined,
@@ -419,6 +425,10 @@ Ext.define('PVE.qemu.HardwareView', {
pveSelNode: me.pveSelNode,
confid: rec.data.key,
url: `/api2/extjs/${baseurl}`,
+ arch: PVE.qemu.Architecture.getNodeArchitecture(
+ me.getObjectValue('arch'),
+ nodename,
+ ),
listeners: {
destroy: () => me.reload(),
},
--
2.47.3
next prev parent reply other threads:[~2026-02-03 10:22 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-03 10:00 [PATCH manager v2 00/17] enable qemu vm architecture selection Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 01/17] api/pvestatd: broadcast and expose non-x86 host architecture Dominik Csapak
2026-02-03 13:56 ` Thomas Lamprecht
2026-02-03 15:07 ` Thomas Lamprecht
2026-02-03 10:00 ` [PATCH manager v2 02/17] ui: qemu: wizard: refactor ostype and cd selector into an OSPanel Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 03/17] ui: form: add filtered KVComboBox Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 04/17] ui: resource store: add architecture field Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 05/17] ui: qemu: add architecture specific defaults and helpers Dominik Csapak
2026-02-03 10:00 ` Dominik Csapak [this message]
2026-02-03 10:00 ` [PATCH manager v2 07/17] ui: qemu: make scsi hw selector architecture aware Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 08/17] ui: qemu: make osdefaults " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 09/17] ui: qemu: make os type selector " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 10/17] ui: qemu: make machine panels/fields " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 11/17] ui: qemu: make bios selector " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 12/17] ui: qemu: make sortByPreviousUsage " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 13/17] ui: qemu: wizard: use defaults to populate machine and bios Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 14/17] ui: qemu: wizard: make iso confid architecture specific Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 15/17] ui: qemu: make bus selector architecture aware Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 16/17] ui: qemu: make processor edit " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 17/17] ui: qemu: change ui default for cpu model Dominik Csapak
2026-02-03 10:56 ` [PATCH manager v2 00/17] enable qemu vm architecture selection Dominik Csapak
2026-02-03 13:34 ` Thomas Lamprecht
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260203102118.1430545-7-d.csapak@proxmox.com \
--to=d.csapak@proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox