From 64951e1e5e4f93e087aee7301cf9e1284ae72467 Mon Sep 17 00:00:00 2001 From: Ryan Blundon Date: Mon, 25 May 2026 20:35:32 -0500 Subject: [PATCH] fix(jarvis): use args not command for hermes entrypoint --- cluster/applications/jarvis/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/applications/jarvis/deployment.yaml b/cluster/applications/jarvis/deployment.yaml index 6061f81..e315850 100644 --- a/cluster/applications/jarvis/deployment.yaml +++ b/cluster/applications/jarvis/deployment.yaml @@ -55,7 +55,7 @@ spec: containers: - name: hermes image: nousresearch/hermes-agent:latest - command: ["hermes", "gateway", "run"] + args: ["gateway", "run"] ports: - containerPort: 8642 name: gateway @@ -113,4 +113,4 @@ spec: ports: - name: gateway port: 8642 - targetPort: 8642 \ No newline at end of file + targetPort: 8642