From b44b6cdfea1b816c548c31278a910289493ab5f8 Mon Sep 17 00:00:00 2001 From: 0n1cOn3 <0n1cOn3@gmx.ch> Date: Mon, 15 Dec 2025 10:57:39 +0100 Subject: [PATCH 1/2] Fix: Pointing back to the original docker registry to ghcr.io/davidilie/ilo4-fan-controller:latest. Cosmetic: removing local. in BASE_URL - not necessary at all. Adjustment: Increased QUIET_PRESENT value through one's own experiences for 1U servers. --- README.md | 8 ++++---- tui.py | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f68ffa4..50b219c 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ The controller now exposes a small REST API for automation or scripting: Example usage with `curl`: ```bash -BASE_URL="http://ilo-fan-controller-ip.local:3000" +BASE_URL="http://ilo-fan-controller-ip:3000" ``` ### - Unlock manual control @@ -60,8 +60,8 @@ curl -s "$BASE_URL/api/fans" | jq . This resposity contains a docker image which can easily be pulled down to use in a Docker/Kubernetes environment. Modify the comamnd below with **your** values regarding your setup and then you can run the command: ```bash -git clone https://github.com/0n1cOn3/ilo4-fan-controller -docker build -t local/ilo4-fan-controller:latest-local . +git clone https://github.com/DavidIlie/ilo4-fan-controller +docker build -t ghcr.io/davidilie/ilo4-fan-controller:latest . ```bash docker run -d \ @@ -71,7 +71,7 @@ docker run -d \ -e ILO_PASSWORD='*your password**' \ -e ILO_HOST='*the ip address you access ILO on*' \ --restart unless-stopped \ - local/ilo4-fan-controller:latest-local + ghcr.io/davidilie/ilo4-fan-controller:latest ``` You can modify this to work with Rancher, Portainer, etc. diff --git a/tui.py b/tui.py index 5e78682..241f6c1 100644 --- a/tui.py +++ b/tui.py @@ -7,8 +7,8 @@ DEFAULT_BASE_URL = "http://localhost:1234" # Presets in Percent -QUIET_PRESET = 20 -NORMAL_PRESET = 35 +QUIET_PRESET = 30 # Slightly increased, as 1U servers (HD controllers) often experience overheating when set to 20%. +NORMAL_PRESET = 40 TURBO_PRESET = 80 From 20ef9092695c425350fa6e011a955a3a4ba4b5cc Mon Sep 17 00:00:00 2001 From: 0n1cOn3 Date: Mon, 15 Dec 2025 13:24:00 +0100 Subject: [PATCH 2/2] Fix: Markdown formatting issue Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 582ab29..b66e47f 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,6 @@ This repository contains a docker image which can easily be pulled down to use i ```bash git clone https://github.com/DavidIlie/ilo4-fan-controller docker build -t ghcr.io/davidilie/ilo4-fan-controller:latest . - ```bash docker run -d \ --name=ilo4-fan-controller \