From 204467008ef7ddff764ef73badf650cddeb3866e Mon Sep 17 00:00:00 2001 From: sHa Date: Sun, 23 Aug 2026 13:21:22 +0300 Subject: [PATCH] Fix gitea-mcp container entrypoint and CLI flags MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The image has no gitea-mcp on PATH (binary lives at /app/gitea-mcp), and the real binary only accepts -t/-port (Go flag style, no --addr flag exists) — verified against upstream docs which described flags that don't match the shipped binary. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01566weDFku8TaRC2CJUPVM1 --- gitea-mcp/values.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gitea-mcp/values.yaml b/gitea-mcp/values.yaml index e78eabf..c18bdee 100644 --- a/gitea-mcp/values.yaml +++ b/gitea-mcp/values.yaml @@ -3,13 +3,11 @@ image: tag: latest pullPolicy: IfNotPresent -command: ["gitea-mcp"] +command: ["/app/gitea-mcp"] args: - -t - http - - --addr - - 0.0.0.0 - - --port + - -port - "8080" port: 8080