You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ro...@apache.org on 2021/02/26 06:40:49 UTC

[cloudstack] branch master updated (1d8a497 -> 77290df)

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

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


    from 1d8a497  Merge remote-tracking branch 'origin/4.15'
     add d0e71ad  packaging: update Requirements in README (#4725)
     add 1545bf8  ui: add missing antd component use (#4728)
     add a234501  ui: Add guest IP ranges (#4716)
     add fef0e66  ui: fix add Vmware cluster (#4663)
     add 7874918  server: Look for active templates for VR deployment (#4047)
     add af0f642  kvm: Suspending the VM prior to deleting snapshots to avoid corruption, th… (#4032)
     add 88337bd  server: fix finding pools for volume migration (#4693)
     add e1f3179  Adjust tests to fix a problem with the container builders (https://github.com/khos2ow/cloudstack-deb-builder) (#4668)
     add 7be87f1  Merge forward PR#4668 of Branch 4.13 on branch 4.14
     add 569720f   Merge forward PR#4668 of Branch 4.14 on branch 4.15
     add 77290df  Merge remote-tracking branch 'origin/4.15'

No new revisions were added by this update.

Summary of changes:
 .../api/storage/StoragePoolAllocator.java          |  10 +-
 .../com/cloud/storage/dao/VMTemplateDaoImpl.java   |   3 +
 .../storage/datastore/db/PrimaryDataStoreDao.java  |   2 +
 .../datastore/db/PrimaryDataStoreDaoImpl.java      |  13 +
 .../allocator/AbstractStoragePoolAllocator.java    |  14 +-
 .../ClusterScopeStoragePoolAllocator.java          |   6 +-
 .../GarbageCollectingStoragePoolAllocator.java     |   4 +-
 .../allocator/LocalStoragePoolAllocator.java       |   4 +-
 .../allocator/UseLocalForRootAllocator.java        |   7 +-
 .../allocator/ZoneWideStoragePoolAllocator.java    |   6 +-
 packaging/README.md                                |   4 +-
 .../cloudstack/ca/provider/RootCAProviderTest.java |  15 +-
 .../LibvirtDeleteVMSnapshotCommandWrapper.java     |  36 ++-
 .../kvm/storage/KVMStorageProcessor.java           |   2 +-
 .../allocator/RandomStoragePoolAllocator.java      |   2 +-
 .../com/cloud/server/ManagementServerImpl.java     | 123 ++++++---
 ui/src/config/section/network.js                   |   4 +
 ui/src/core/lazy_lib/components_use.js             |   6 +-
 ui/src/views/infra/ClusterAdd.vue                  |  26 +-
 ui/src/views/infra/network/IpRangesTabGuest.vue    |   8 +-
 ui/src/views/infra/network/TrafficTypesTab.vue     |   4 +-
 ui/src/views/network/CreateVlanIpRange.vue         | 285 +++++++++++++++++++++
 ui/src/views/network/GuestIpRanges.vue             | 196 ++++++++++++++
 23 files changed, 709 insertions(+), 71 deletions(-)
 create mode 100644 ui/src/views/network/CreateVlanIpRange.vue
 create mode 100644 ui/src/views/network/GuestIpRanges.vue