From 0c93c50944954f9a6382b1ee7357d1f9b20b29fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20R=C3=BCck?= Date: Tue, 2 Jun 2026 13:28:44 -0300 Subject: [PATCH] UI support for the scaleSystemVm API --- ui/src/config/section/infra/systemVms.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/src/config/section/infra/systemVms.js b/ui/src/config/section/infra/systemVms.js index 4a5879b17626..587424d32e89 100644 --- a/ui/src/config/section/infra/systemVms.js +++ b/ui/src/config/section/infra/systemVms.js @@ -100,14 +100,15 @@ export default { label: 'label.change.service.offering', message: 'message.confirm.scale.up.system.vm', dataView: true, - show: (record) => { return record.state === 'Running' && record.hypervisor === 'VMware' || record.state === 'Stopped' }, + show: (record) => { return record.state === 'Running' && (record.hypervisor === 'VMware' || record.hypervisor === 'KVM') || record.state === 'Stopped' }, args: ['serviceofferingid'], mapping: { serviceofferingid: { api: 'listServiceOfferings', params: (record) => { return { virtualmachineid: record.id, issystem: true, systemvmtype: record.systemvmtype } } } - } + }, + popup: true }, { api: 'migrateSystemVm',