This is an automated email from the ASF dual-hosted git repository.
harikrishna-patnala pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/main by this push:
new 136ee82303e UI support for the scaleSystemVm API (#13321)
136ee82303e is described below
commit 136ee82303e179251df07946c76cf7c41232e2f2
Author: Gustavo Rück <[email protected]>
AuthorDate: Mon Sep 7 07:07:05 2026 -0300
UI support for the scaleSystemVm API (#13321)
Co-authored-by: Gustavo Rück <[email protected]>
---
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 588c8823e69..abd952800be 100644
--- a/ui/src/config/section/infra/systemVms.js
+++ b/ui/src/config/section/infra/systemVms.js
@@ -101,14 +101,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',