Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -60,9 +60,8 @@ curl -s "$BASE_URL/api/fans" | jq .
This repository contains a docker image which can easily be pulled down to use in a Docker/Kubernetes environment. Modify the command 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 \
--name=ilo4-fan-controller \
Expand All @@ -71,7 +70,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.
Expand Down
4 changes: 2 additions & 2 deletions tui.py
Original file line number Diff line number Diff line change
Expand Up @@ -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%.
Comment thread
0n1cOn3 marked this conversation as resolved.
NORMAL_PRESET = 40
TURBO_PRESET = 80


Expand Down