-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from gyptazy/release/1.0.4
release: Create stable release 1.0.4
- Loading branch information
Showing
7 changed files
with
62 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
date: TBD | ||
date: 2024-10-11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
proxlb (1.0.4) unstable; urgency=low | ||
|
||
* Add feature to make API timeout configureable. | ||
* Add maintenance mode to evacuate a node and move workloads for other nodes in the cluster. | ||
* Add version output cli arg. | ||
* Run storage balancing only on supported shared storages. | ||
* Run storage balancing only when needed to save time. | ||
* Fix CPU balancing where calculations are done in float instead of int. (by @glitchvern) | ||
* Fix documentation for the underlying infrastructure. | ||
|
||
-- Florian Paul Azim Hoberg <[email protected]> Fri, 11 Oct 2024 06:14:13 +0200 | ||
|
||
proxlb (1.0.3) unstable; urgency=low | ||
|
||
* Add a convert function to cast all bool alike options from configparser to bools. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
* Fri Oct 11 2024 Florian Paul Azim Hoberg <[email protected]> | ||
- Add feature to make API timeout configureable. | ||
- Add maintenance mode to evacuate a node and move workloads for other nodes in the cluster. | ||
- Add version output cli arg. | ||
- Run storage balancing only on supported shared storages. | ||
- Run storage balancing only when needed to save time. | ||
- Fix CPU balancing where calculations are done in float instead of int. (by @glitchvern) | ||
- Fix documentation for the underlying infrastructure. | ||
|
||
* Wed Sep 12 2024 Florian Paul Azim Hoberg <[email protected]> | ||
- Add a convert function to cast all bool alike options from configparser to bools. | ||
- Add a config parser options for future features. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ import urllib3 | |
|
||
# Constants | ||
__appname__ = "ProxLB" | ||
__version__ = "1.0.4b" | ||
__version__ = "1.0.4" | ||
__config_version__ = 3 | ||
__author__ = "Florian Paul Azim Hoberg <[email protected]> @gyptazy" | ||
__errors__ = False | ||
|
@@ -338,7 +338,7 @@ def api_connect(proxmox_api_host, proxmox_api_user, proxmox_api_pass, proxmox_ap | |
proxmox_api_host = __api_connect_get_host(proxmox_api_host) | ||
|
||
try: | ||
api_object = proxmoxer.ProxmoxAPI(proxmox_api_host, user=proxmox_api_user, password=proxmox_api_pass, verify_ssl=proxmox_api_ssl_v, timeout=proxmox_api_timeout) | ||
api_object = proxmoxer.ProxmoxAPI(proxmox_api_host, user=proxmox_api_user, password=proxmox_api_pass, verify_ssl=proxmox_api_ssl_v, timeout=int(proxmox_api_timeout)) | ||
except proxmoxer.backends.https.AuthenticationError as proxmox_api_error: | ||
logging.critical(f'{error_prefix} Provided credentials do not work: {proxmox_api_error}') | ||
sys.exit(2) | ||
|