mirror of
https://github.com/apache/cloudstack
synced 2026-08-02 05:26:35 +00:00
This PR introduces the initial implementation of Veeam integration support for KVM in CloudStack by adding a UHAPI-compatible server and image server components.
Veeam Backup & Replication interacts with virtualization platforms using its Universal Hypervisor API (UHAPI). To enable backup and restore workflows for CloudStack-managed KVM environments, this change introduces a UHAPI server that exposes CloudStack resources through a UHAPI-compatible interface.
In addition to the control plane APIs, an image server component is introduced to handle the data transfer operations required during backup and restore workflows.
The integration consists of two main components:
1. UHAPI Server (Control Plane) named CloudStack Veeam Control Service
A lightweight UHAPI server runs inside the CloudStack management server and exposes endpoints under:
/ovirt-engine
- /api - For APIs
- /sso - For authentication
- /services/pki-resource - For certificates
This server provides inventory discovery APIs required by Veeam and translates CloudStack resources into the structures expected by UHAPI.
The server:
- exposes infrastructure inventory
- handles authentication and session tokens
- maps CloudStack resources to UHAPI-compatible representations
2. Image Server (Data Plane) named CloudStack Image Service
A separate image server component is introduced to handle backup and restore data transfer operations.
This component:
- serves disk image data during backup
- receives image data during restore operations
- exposes endpoints used by Veeam worker components
- integrates with CloudStack storage to read and write VM disk data
The separation between both these components server ensures that:
- metadata APIs and control operations remain lightweight
- bulk image transfer operations are handled independently
Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
Co-authored-by: Abhisar Sinha <63767682+abh1sar@users.noreply.github.com>
Co-authored-by: abh1sar <abhisar.sinha@gmail.com>
Co-authored-by: Wei Zhou <weizhou@apache.org>
61 lines
3.3 KiB
Plaintext
61 lines
3.3 KiB
Plaintext
Source: cloudstack
|
|
Section: libs
|
|
Priority: extra
|
|
Maintainer: The Apache CloudStack Team <dev@cloudstack.apache.org>
|
|
Build-Depends: debhelper (>= 9), openjdk-17-jdk | java17-sdk | java17-jdk | zulu-17 | openjdk-11-jdk | java11-sdk | java11-jdk | zulu-11, genisoimage,
|
|
python-mysql.connector | python3-mysql.connector | mysql-connector-python-py3, maven (>= 3) | maven3,
|
|
python3 (>= 3), python3-setuptools,
|
|
nodejs (>= 12), lsb-release, dh-systemd | debhelper (>= 13)
|
|
Standards-Version: 3.8.1
|
|
Homepage: http://www.cloudstack.org/
|
|
|
|
Package: cloudstack-common
|
|
Architecture: all
|
|
Depends: ${misc:Depends}, ${python3:Depends}, genisoimage, nfs-common, python3-pip, python3-distutils | python3-distutils-extra, python3-netaddr, uuid-runtime
|
|
Conflicts: cloud-scripts, cloud-utils, cloud-system-iso, cloud-console-proxy, cloud-daemonize, cloud-deps, cloud-python, cloud-setup
|
|
Description: A common package which contains files which are shared by several CloudStack packages
|
|
|
|
Package: cloudstack-management
|
|
Architecture: all
|
|
Depends: ${python3:Depends}, openjdk-17-jre-headless | java17-runtime-headless | java17-runtime | zulu-17, cloudstack-common (= ${source:Version}), net-tools, sudo, python3-mysql.connector | mysql-connector-python-py3, augeas-tools, mysql-client | mariadb-client, adduser, bzip2, ipmitool, file, gawk, iproute2, qemu-utils, rng-tools, python3-dnspython, lsb-release, init-system-helpers (>= 1.14~), python3-setuptools
|
|
Conflicts: cloud-server, cloud-client, cloud-client-ui
|
|
Description: CloudStack server library
|
|
The CloudStack management server
|
|
|
|
Package: cloudstack-agent
|
|
Architecture: all
|
|
Depends: ${python:Depends}, ${python3:Depends}, openjdk-17-jre-headless | java17-runtime-headless | java17-runtime | zulu-17, cloudstack-common (= ${source:Version}), lsb-base (>= 9), openssh-client, qemu-kvm (>= 2.5) | qemu-system-x86 (>= 5.2), libvirt-bin (>= 1.3) | libvirt-daemon-system (>= 3.0), iproute2, ebtables, vlan, ipset, python3-libvirt, ethtool, iptables, cryptsetup, rng-tools, rsync, ovmf, swtpm, lsb-release, ufw, apparmor, cpu-checker, libvirt-daemon-driver-storage-rbd, sysstat, python3-libnbd, socat
|
|
Recommends: init-system-helpers
|
|
Conflicts: cloud-agent, cloud-agent-libs, cloud-agent-deps, cloud-agent-scripts
|
|
Description: CloudStack agent
|
|
The CloudStack agent is in charge of managing shared computing resources in
|
|
a CloudStack powered cloud. Install this package if this computer
|
|
will participate in your cloud as a KVM HyperVisor.
|
|
|
|
Package: cloudstack-usage
|
|
Architecture: all
|
|
Depends: openjdk-17-jre-headless | java17-runtime-headless | java17-runtime | zulu-17, cloudstack-common (= ${source:Version}), init-system-helpers
|
|
Description: CloudStack usage monitor
|
|
The CloudStack usage monitor provides usage accounting across the entire cloud for
|
|
cloud operators to charge based on usage parameters.
|
|
|
|
Package: cloudstack-ui
|
|
Architecture: all
|
|
Depends: ${misc:Depends}
|
|
Description: The CloudStack UI
|
|
|
|
Package: cloudstack-docs
|
|
Architecture: all
|
|
Depends: ${misc:Depends}
|
|
Description: The CloudStack documentation
|
|
|
|
Package: cloudstack-marvin
|
|
Architecture: all
|
|
Depends: ${misc:Depends}, python3-pip, python3-dev, libffi-dev
|
|
Description: The CloudStack Marvin library
|
|
|
|
Package: cloudstack-integration-tests
|
|
Architecture: all
|
|
Depends: ${misc:Depends}, cloudstack-marvin (= ${source:Version})
|
|
Description: The CloudStack Marvin integration tests
|