diff --git a/README.md b/README.md index 08510b9..87f9ae8 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ ## Introduction -ProxLB is an advanced load balancing solution specifically designed for Proxmox clusters, addressing the absence of a intelligent resource scheduler that is familiar to VMware users. As a third-party solution, ProxLB enhances the management and efficiency of Proxmox clusters by intelligently distributing workloads across available nodes. Workloads can be balanced by different times like the guest's memory, CPU or disk usage or their assignment to avoid overprovisioning and ensuring resources. +ProxLB is an advanced load balancing solution specifically designed for Proxmox clusters, addressing the absence of an intelligent and more advanced resource scheduler. As a third-party solution, ProxLB enhances the management and efficiency of Proxmox clusters by intelligently distributing workloads across available nodes. Workloads can be balanced by different times like the guest's memory, CPU or disk usage or their assignment to avoid overprovisioning and ensuring resources. One of the key advantages of ProxLB is that it is fully open-source and free, making it accessible for anyone to use, modify, and contribute to. This ensures transparency and fosters community-driven improvements. ProxLB supports filtering and ignoring specific nodes and guests through configuration files and API calls, providing administrators with the flexibility to tailor the load balancing behavior to their specific needs. diff --git a/debian/control b/debian/control index bb07566..3298aa6 100644 --- a/debian/control +++ b/debian/control @@ -8,5 +8,5 @@ Build-Depends: debhelper-compat (= 13), dh-python, python3-all, python3-setuptoo Package: proxlb Architecture: all Depends: ${python3:Depends}, ${misc:Depends}, python3-requests, python3-urllib3, python3-proxmoxer, python3-yaml -Description: A resource scheduler and load balancer for Proxmox clusters +Description: An advanced resource scheduler and load balancer for Proxmox clusters An advanced resource scheduler and load balancer for Proxmox clusters that also supports maintenance mode and affinity/anti-affinity rules. diff --git a/proxlb/utils/version.py b/proxlb/utils/version.py index 265956a..fcccb10 100644 --- a/proxlb/utils/version.py +++ b/proxlb/utils/version.py @@ -1,5 +1,5 @@ __app_name__ = "ProxLB" -__app_desc__ = "A resource scheduler and load balancer for Proxmox clusters." +__app_desc__ = "An advanced resource scheduler and load balancer for Proxmox clusters." __author__ = "Florian Paul Azim Hoberg " __copyright__ = "Copyright (C) 2025 Florian Paul Azim Hoberg (@gyptazy)" __license__ = "GPL-3.0" diff --git a/setup.py b/setup.py index bb3e65c..c5cd226 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup( name="proxlb", version="1.1.7", - description="A resource scheduler and load balancer for Proxmox clusters.", + description="An advanced resource scheduler and load balancer for Proxmox clusters.", long_description="An advanced resource scheduler and load balancer for Proxmox clusters that also supports maintenance modes and affinity/anti-affinity rules.", author="Florian Paul Azim Hoberg", author_email="gyptazy@gyptazy.com",