From 4d9195b32d86d86ac337a1fb8e7dbc07a24c2b07 Mon Sep 17 00:00:00 2001 From: Roger Oriol Date: Sat, 27 Jun 2026 21:00:03 +0200 Subject: [PATCH] use hermes stock image for platform engineer --- platform-engineer/deployment.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/platform-engineer/deployment.yaml b/platform-engineer/deployment.yaml index 1d7ed41..f84c7b9 100644 --- a/platform-engineer/deployment.yaml +++ b/platform-engineer/deployment.yaml @@ -91,7 +91,11 @@ spec: - name: hermes image: nousresearch/hermes-agent:latest imagePullPolicy: Always - command: ["gateway", "run"] + # IMPORTANT: do NOT set `command:` — it would override the image's + # ENTRYPOINT (/init, s6-overlay), which sets up the hermes user, seeds + # config on first boot, and supervises the gateway. The image's CMD + # (main-wrapper.sh) already routes `gateway run` through s6. + args: ["gateway", "run"] ports: - name: gateway containerPort: 8642