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

nvazquez pushed a change to branch nsx-integration
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


    omit c75426364eb Create DHCP relay command and execute request
     add 83540aab274 revert reserving 1st IP in vpc segments
     add e7e511b685e [NSX] Create a DHCP relay and add it to a VPC tier segment 
(#107)
     add dc1665cba70 [NSX] Cleanup DHCP Relay config on segment deletion (#108)
     add cc6f21b4df8 PULL_REQUEST_TEMPLATE.md: add extra question on testing PR 
(#8035)
     add 884953cde18 ui: add button in zone physical network list (#8028)
     add e21b8882e47 cleanups as suggested by errorprone (#7088)
     add b9e423b7a9e Add extra checks for test_vm_schedule to avoid 
intermittent failures (#8036)
     add 4c59dea0d13 [Veeam] Don't interrupt backup syncronization (#7225)
     add 82b981854b8 KVM Agent config to reserve dom0 CPUs (#7987)
     add 5d9ae31f1b0 UI: Admin, account and project dashboard improvements 
(#7956)
     add 51add0a0662 systemvm: check if patchfile exists and is valid tarball 
before patching (#7953)
     add 9b8eaeea78a Fix: Convert volume to another directory instead of 
copying it while taking volume snapshots on KVM (#8041)
     add a20ab40b674 Ensure getCapacityState() is not called for hosts in 
maintenance (#8025)
     add 72cf9740f93 Merge branch '4.18'
     add 5ec455228dc Merge branch 'main' into nsx-integration

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (c75426364eb)
            \
             N -- N -- N   refs/heads/nsx-integration (5ec455228dc)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 PULL_REQUEST_TEMPLATE.md                           |   5 +
 agent/conf/agent.properties                        |   5 +
 .../cloud/agent/properties/AgentProperties.java    |   9 +
 .../cloudstack/framework/config/ConfigKey.java     |   2 +-
 .../config/impl/ConfigDepotAdminTest.java          |   4 +
 .../main/java/com/cloud/dao/EntityManagerImpl.java |   2 +-
 .../src/main/java/com/cloud/utils/db/DbUtil.java   |   4 +-
 .../main/java/com/cloud/utils/db/DriverLoader.java |   7 +-
 .../src/main/java/com/cloud/utils/db/EcInfo.java   |   4 +-
 .../java/com/cloud/utils/db/GenericDaoBase.java    |   3 +-
 .../kvm/resource/LibvirtComputingResource.java     |   8 +-
 .../kvm/storage/KVMStorageProcessor.java           |  43 +-
 .../apache/cloudstack/utils/linux/KVMHostInfo.java |  20 +-
 .../kvm/storage/KVMStorageProcessorTest.java       |  53 +-
 .../cloudstack/utils/linux/KVMHostInfoTest.java    |  30 +-
 .../cloudstack/metrics/PrometheusExporterImpl.java |  20 +-
 ...d.java => CreateNsxDhcpRelayConfigCommand.java} |  28 +-
 .../apache/cloudstack/resource/NsxResource.java    |  76 ++-
 .../cloudstack/service/NsxGuestNetworkGuru.java    |  45 ++
 .../com/cloud/network/IpAddressManagerImpl.java    |  10 -
 .../com/cloud/network/guru/GuestNetworkGuru.java   |   2 +-
 .../cloudstack/backup/BackupManagerImpl.java       |  44 +-
 .../debian/opt/cloud/bin/setup/cloud-early-config  |   2 +-
 test/integration/smoke/test_vm_schedule.py         |   4 +
 ui/package-lock.json                               | 688 ++++++---------------
 ui/package.json                                    |  10 +-
 ui/public/config.json                              |  30 +
 ui/public/locales/en.json                          |   5 +
 ui/src/assets/icons/debian.svg                     | 153 -----
 ui/src/assets/icons/kubernetes.svg                 |  58 --
 ui/src/components/header/CreateMenu.vue            | 152 +++++
 ui/src/components/header/ProjectMenu.vue           |   4 +-
 ui/src/components/header/UserMenu.vue              |  12 +
 ui/src/components/menu/SMenu.vue                   |   5 +
 ui/src/components/page/GlobalHeader.vue            |   4 +-
 ui/src/components/page/GlobalLayout.vue            |  12 +-
 ui/src/components/view/InfoCard.vue                |   6 +
 ui/src/components/view/ResourceView.vue            |   2 +-
 ui/src/components/widgets/ChartCard.vue            |   1 -
 ui/src/components/widgets/Drawer.vue               |   2 +-
 ui/src/components/widgets/OsLogo.vue               |  16 +-
 ui/src/config/router.js                            |  23 +-
 ui/src/config/section/compute.js                   |   7 +-
 ui/src/config/section/image.js                     |   3 +-
 ui/src/config/section/infra/hosts.js               |   2 +-
 ui/src/config/section/infra/primaryStorages.js     |   2 +-
 ui/src/config/section/storage.js                   |   2 +-
 ui/src/core/ext.js                                 |   8 +-
 ui/src/core/lazy_lib/components_use.js             |   4 +-
 ui/src/style/dark-mode.less                        |   2 +-
 ui/src/style/vars.less                             |   5 +
 ui/src/utils/device.js                             |   6 +-
 ui/src/views/AutogenView.vue                       |  17 +-
 ui/src/views/dashboard/CapacityDashboard.vue       | 529 ++++++++++++----
 ui/src/views/dashboard/UsageDashboard.vue          | 597 ++++++++++++++----
 ui/src/views/infra/zone/PhysicalNetworksTab.vue    | 150 ++++-
 ui/src/views/network/CreateIsolatedNetworkForm.vue |   4 +-
 ui/src/views/network/CreateNetwork.vue             |   3 +-
 ui/src/views/network/CreateVpc.vue                 |   4 +-
 .../java/com/cloud/utils/SerialVersionUID.java     |   2 +-
 .../com/cloud/utils/events/SubscriptionMgr.java    |   6 +
 .../java/com/cloud/utils/net/NetUtilsTest.java     |   1 +
 .../utils/redfish/RedfishClientTest.java           |   4 +-
 63 files changed, 1839 insertions(+), 1132 deletions(-)
 rename 
plugins/network-elements/nsx/src/main/java/org/apache/cloudstack/agent/api/{CreateDhcpRelayCommand.java
 => CreateNsxDhcpRelayConfigCommand.java} (58%)
 delete mode 100644 ui/src/assets/icons/debian.svg
 delete mode 100644 ui/src/assets/icons/kubernetes.svg
 create mode 100644 ui/src/components/header/CreateMenu.vue

Reply via email to