This is an automated email from the ASF dual-hosted git repository.
weizhou pushed a change to branch 4.18-vm-autoscaling
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
from 3356cc4a24c AS: rename counter names
new 242398df178 AS: fix code smell and add unit test
AutoScaleVmProfileVOTest
new 1e4aaa538cd AS: check AS group name (a-zA-Z0-9 and hyphen only)
new 489cfba3816 AS: add capability VmAutoScaling to Lb Service
The 3 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.
Summary of changes:
api/src/main/java/com/cloud/network/Network.java | 1 +
.../java/com/cloud/offering/NetworkOffering.java | 2 +
.../org/apache/cloudstack/api/ApiConstants.java | 1 +
.../cloudstack/api/response/NetworkResponse.java | 12 ++++
.../com/cloud/network/as/AutoScaleVmProfileVO.java | 4 ++
.../com/cloud/offerings/NetworkOfferingVO.java | 12 ++++
.../resources/META-INF/db/schema-41710to41800.sql | 72 +++++++++++++++++++
.../cloud/network/as/AutoScaleVmProfileVOTest.java | 65 +++++++++++++++++
.../as/dao/AutoScaleVmGroupVmMapDaoImplTest.java | 14 ++++
.../cloud/network/element/NetscalerElement.java | 1 +
.../main/java/com/cloud/api/ApiResponseHelper.java | 6 ++
.../cloud/api/query/vo/NetworkOfferingJoinVO.java | 8 +++
.../configuration/ConfigurationManagerImpl.java | 28 ++++++--
.../com/cloud/network/as/AutoScaleManagerImpl.java | 52 +++++++++++---
.../network/element/VirtualRouterElement.java | 1 +
.../cloud/network/as/AutoScaleManagerImplTest.java | 84 +++++++++++++++++++---
test/integration/smoke/test_vm_autoscaling.py | 6 ++
ui/public/locales/en.json | 4 ++
ui/src/views/compute/CreateAutoScaleVmGroup.vue | 19 +++++
ui/src/views/compute/wizard/NetworkSelection.vue | 10 ++-
ui/src/views/offering/AddNetworkOffering.vue | 13 ++++
21 files changed, 389 insertions(+), 26 deletions(-)
create mode 100755
engine/schema/src/test/java/com/cloud/network/as/AutoScaleVmProfileVOTest.java