From 707ec392913f64f1ef1bf6ff5095de27e8ab14f5 Mon Sep 17 00:00:00 2001 From: Roger Oriol Date: Sun, 26 Jul 2026 17:19:20 +0200 Subject: [PATCH] fix hermes api not being reachable --- home-manager/deployment.yaml | 4 ++++ platform-engineer/deployment.yaml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/home-manager/deployment.yaml b/home-manager/deployment.yaml index 6629c53..36d17d5 100644 --- a/home-manager/deployment.yaml +++ b/home-manager/deployment.yaml @@ -114,6 +114,10 @@ spec: # cross-pod). Auth is still enforced via API_SERVER_KEY. - name: API_SERVER_HOST value: "0.0.0.0" + # Distinct model id advertised on GET /v1/models. Without this both + # agents report "hermes-agent" and Open WebUI dedupes them, hiding one. + - name: API_SERVER_MODEL_NAME + value: "home-manager" # NOTE: API_SERVER_KEY comes from the hermes-env Secret (via envFrom) # and is also seeded into /opt/data/.env by the init container. Clients # (e.g. Open WebUI) authenticate with `Authorization: Bearer `. diff --git a/platform-engineer/deployment.yaml b/platform-engineer/deployment.yaml index 8acd3ec..a5c739b 100644 --- a/platform-engineer/deployment.yaml +++ b/platform-engineer/deployment.yaml @@ -143,6 +143,10 @@ spec: # cross-pod). Auth is still enforced via API_SERVER_KEY. - name: API_SERVER_HOST value: "0.0.0.0" + # Distinct model id advertised on GET /v1/models. Without this both + # agents report "hermes-agent" and Open WebUI dedupes them, hiding one. + - name: API_SERVER_MODEL_NAME + value: "platform-engineer" # NOTE: API_SERVER_KEY comes from the hermes-env Secret (via envFrom) # and is also seeded into /opt/data/.env by the init container. Clients # (e.g. Open WebUI) authenticate with `Authorization: Bearer `.