You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ha...@apache.org on 2021/11/22 08:14:50 UTC

[cloudstack] branch KVMDynamicScalingUI created (now 6eb7bb0)

This is an automated email from the ASF dual-hosted git repository.

harikrishna pushed a change to branch KVMDynamicScalingUI
in repository https://gitbox.apache.org/repos/asf/cloudstack.git.


      at 6eb7bb0  UI: show button for dynamic Scaling for VM in case of KVM hypervisor, since it is supported now

This branch includes the following new commits:

     new 6eb7bb0  UI: show button for dynamic Scaling for VM in case of KVM hypervisor, since it is supported now

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[cloudstack] 01/01: UI: show button for dynamic Scaling for VM in case of KVM hypervisor, since it is supported now

Posted by ha...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

harikrishna pushed a commit to branch KVMDynamicScalingUI
in repository https://gitbox.apache.org/repos/asf/cloudstack.git

commit 6eb7bb0fe33282bf3cc7c2589bd221353c6eef96
Author: Harikrishna Patnala <ha...@gmail.com>
AuthorDate: Mon Nov 22 13:43:03 2021 +0530

    UI: show button for dynamic Scaling for VM in case of KVM hypervisor, since it is supported now
---
 ui/src/config/section/compute.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/config/section/compute.js b/ui/src/config/section/compute.js
index 835923d..f1f2340 100644
--- a/ui/src/config/section/compute.js
+++ b/ui/src/config/section/compute.js
@@ -301,7 +301,7 @@ export default {
           label: 'label.scale.vm',
           docHelp: 'adminguide/virtual_machines.html#how-to-dynamically-scale-cpu-and-ram',
           dataView: true,
-          show: (record) => { return ['Stopped'].includes(record.state) || (['Running'].includes(record.state) && record.hypervisor !== 'KVM' && record.hypervisor !== 'LXC') },
+          show: (record) => { return ['Stopped'].includes(record.state) || (['Running'].includes(record.state) && record.hypervisor !== 'LXC') },
           disabled: (record) => { return record.state === 'Running' && !record.isdynamicallyscalable },
           popup: true,
           component: () => import('@/views/compute/ScaleVM.vue')