From 7294f1edead0f37221b4c9df0d7aff1181e89fcb Mon Sep 17 00:00:00 2001 From: marvin-69-jpg <274374385+marvin-69-jpg@users.noreply.github.com> Date: Sun, 12 Apr 2026 02:48:27 +0000 Subject: [PATCH] fix: mount agentsMd at CLAUDE.md and GEMINI.md in addition to AGENTS.md Claude Code only auto-discovers CLAUDE.md and Gemini only discovers GEMINI.md, so the agentsMd content was silently ignored for those presets. Mount the same configmap key at all three discovery filenames so any preset picks it up. Fixes #134 --- charts/openab/templates/deployment.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/charts/openab/templates/deployment.yaml b/charts/openab/templates/deployment.yaml index 0d45041d..b237475f 100644 --- a/charts/openab/templates/deployment.yaml +++ b/charts/openab/templates/deployment.yaml @@ -78,6 +78,12 @@ spec: - name: config mountPath: {{ $cfg.workingDir | default "/home/agent" }}/AGENTS.md subPath: AGENTS.md + - name: config + mountPath: {{ $cfg.workingDir | default "/home/agent" }}/CLAUDE.md + subPath: AGENTS.md + - name: config + mountPath: {{ $cfg.workingDir | default "/home/agent" }}/GEMINI.md + subPath: AGENTS.md {{- end }} {{- with $cfg.nodeSelector }} nodeSelector: